Junyi cafaa82a94
refactor(plugin-workflow): migrate directly action trigger to custom action trigger (#4253)
* refactor(plugin-workflow): migrate directly action trigger to custom action trigger

* test(plugin-workflow-action-trigger): skip legacy test case

* chore(plugin-workflow-action-trigger): adjust locale

* chore(plugin-workflow-action-trigger): adjust locale

* chore(plugin-workflow-action-trigger): match version for migration
2024-05-09 08:34:29 +08:00

29 lines
826 B
TypeScript

/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import { Plugin } from '@nocobase/client';
import WorkflowPlugin, {
useRecordTriggerWorkflowsActionProps,
useTriggerWorkflowsActionProps,
} from '@nocobase/plugin-workflow/client';
import ActionTrigger from './ActionTrigger';
export default class extends Plugin {
async load() {
const workflow = this.app.pm.get('workflow') as WorkflowPlugin;
workflow.registerTrigger('action', ActionTrigger);
this.app.addScopes({
useTriggerWorkflowsActionProps,
useRecordTriggerWorkflowsActionProps,
});
}
}