mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-05-06 14:09:25 +08:00
* 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
29 lines
826 B
TypeScript
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,
|
|
});
|
|
}
|
|
}
|