Adrià Vilanova MartÃnez | c78c3ad | 2024-05-18 00:35:51 +0200 | [diff] [blame^] | 1 | import { |
| 2 | Dependency, |
| 3 | WorkflowsImportDependency, |
| 4 | } from '../../../common/architecture/dependenciesProvider/DependenciesProvider'; |
| 5 | import { |
| 6 | ScriptEnvironment, |
| 7 | ScriptPage, |
| 8 | ScriptRunPhase, |
| 9 | } from '../../../common/architecture/scripts/Script'; |
| 10 | import SetUpDependenciesScript from '../../../common/architecture/scripts/setUpDependencies/SetUpDependenciesScript'; |
| 11 | |
| 12 | export default class WorkflowsDependenciesSetUpAtStartScript extends SetUpDependenciesScript { |
| 13 | public priority = 102; |
| 14 | public page = ScriptPage.CommunityConsole; |
| 15 | public environment = ScriptEnvironment.ContentScript; |
| 16 | public runPhase = ScriptRunPhase.Start; |
| 17 | public dependencies: Dependency[] = [WorkflowsImportDependency]; |
| 18 | } |