From 324de857559427d8de23ac297e74bf5834c154d2 Mon Sep 17 00:00:00 2001 From: Nicolas Molina Monroy Date: Mon, 30 Sep 2024 18:02:34 -0400 Subject: [PATCH] feat(block-editor): add DotWorkflowActionsFireService #30197 (#30198) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ### Parent Issue #30197 ### Proposed Changes * add DotWorkflowActionsFireService ### Checklist - [x] Tests - [x] Translations - [x] Security Implications Contemplated (add notes if applicable) ### Screenshots Original | Updated :-------------------------:|:-------------------------: ![image](https://github.com/user-attachments/assets/8facf48d-a440-4f85-9adf-d50be1403b0f) | ![Screenshot 2024-09-30 at 5 24 19 PM](https://github.com/user-attachments/assets/f428121e-69b7-4d40-96e9-7c4c858b868d) --- core-web/libs/block-editor/src/lib/block-editor.module.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core-web/libs/block-editor/src/lib/block-editor.module.ts b/core-web/libs/block-editor/src/lib/block-editor.module.ts index 9239fb9f1bfc..a52dbfe362ea 100644 --- a/core-web/libs/block-editor/src/lib/block-editor.module.ts +++ b/core-web/libs/block-editor/src/lib/block-editor.module.ts @@ -15,7 +15,8 @@ import { DotMessageService, DotPropertiesService, DotUploadFileService, - DotAiService + DotAiService, + DotWorkflowActionsFireService } from '@dotcms/data-access'; import { LoggerService, StringUtils } from '@dotcms/dotcms-js'; import { @@ -90,6 +91,7 @@ const initTranslations = (dotMessageService: DotMessageService) => { DotPropertiesService, DotContentSearchService, DotLanguagesService, + DotWorkflowActionsFireService, { provide: APP_INITIALIZER, useFactory: initTranslations,