Adrià Vilanova MartÃnez | 33a009c | 2024-11-09 22:41:56 +0100 | [diff] [blame^] | 1 | import { ScriptRunPhase } from '../../../common/architecture/scripts/Script'; |
| 2 | import { StartupDataStoragePort } from '../../../services/communityConsole/StartupDataStorage.port'; |
| 3 | import BaseApplyStartupDataModificationsScript from './baseApplyStartupDataModifications.script'; |
| 4 | |
| 5 | /** |
| 6 | * Applies pending startup data modifications which have been added by other |
| 7 | * scripts at the main run phase. |
| 8 | */ |
| 9 | export default class ApplyStartupDataModificationsOnMainScript extends BaseApplyStartupDataModificationsScript { |
| 10 | runPhase = ScriptRunPhase.Main; |
| 11 | |
| 12 | constructor(startupDataStorage: StartupDataStoragePort) { |
| 13 | super(startupDataStorage); |
| 14 | } |
| 15 | } |