Adrià Vilanova MartÃnez | a2dda31 | 2024-05-18 00:35:51 +0200 | [diff] [blame] | 1 | import { ScriptRunPhase } from '../../common/architecture/scripts/Script'; |
| 2 | import BaseApplyStartupDataModificationsScript from './baseApplyStartupDataModifications.script'; |
| 3 | |
| 4 | /** |
| 5 | * Applies pending startup data modifications which have been added by other |
| 6 | * scripts at the start run phase. |
| 7 | */ |
| 8 | export default class ApplyStartupDataModificationsOnStartScript extends BaseApplyStartupDataModificationsScript { |
| 9 | runPhase = ScriptRunPhase.Start; |
| 10 | } |