Update enums to be all caps (#12372)

- Make custom domain public (remove from lab)
- Use ALL_CAPS definition for enums
This commit is contained in:
Félix Malfait
2025-05-29 14:08:36 +02:00
committed by GitHub
parent 76d0be7f81
commit 4485e8e3db
165 changed files with 845 additions and 847 deletions

View File

@ -20,7 +20,7 @@ import { WorkflowWorkspaceEntity } from 'src/modules/workflow/common/standard-ob
@WorkspaceQueryHook({
key: `workflow.createMany`,
type: WorkspaceQueryHookType.PostHook,
type: WorkspaceQueryHookType.POST_HOOK,
})
export class WorkflowCreateManyPostQueryHook
implements WorkspacePostQueryHookInstance

View File

@ -20,7 +20,7 @@ import { WorkflowWorkspaceEntity } from 'src/modules/workflow/common/standard-ob
@WorkspaceQueryHook({
key: `workflow.createOne`,
type: WorkspaceQueryHookType.PostHook,
type: WorkspaceQueryHookType.POST_HOOK,
})
export class WorkflowCreateOnePostQueryHook
implements WorkspacePostQueryHookInstance

View File

@ -8,7 +8,7 @@ import { WorkflowCommonWorkspaceService } from 'src/modules/workflow/common/work
@WorkspaceQueryHook({
key: `workflow.deleteMany`,
type: WorkspaceQueryHookType.PostHook,
type: WorkspaceQueryHookType.POST_HOOK,
})
export class WorkflowDeleteManyPostQueryHook
implements WorkspacePostQueryHookInstance

View File

@ -8,7 +8,7 @@ import { WorkflowCommonWorkspaceService } from 'src/modules/workflow/common/work
@WorkspaceQueryHook({
key: `workflow.deleteOne`,
type: WorkspaceQueryHookType.PostHook,
type: WorkspaceQueryHookType.POST_HOOK,
})
export class WorkflowDeleteOnePostQueryHook
implements WorkspacePostQueryHookInstance

View File

@ -232,7 +232,7 @@ export class DatabaseEventTriggerListener {
const isWorkflowEnabled =
await this.isFeatureFlagEnabledService.isFeatureEnabled(
FeatureFlagKey.IsWorkflowEnabled,
FeatureFlagKey.IS_WORKFLOW_ENABLED,
workspaceId,
);