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:
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -232,7 +232,7 @@ export class DatabaseEventTriggerListener {
|
||||
|
||||
const isWorkflowEnabled =
|
||||
await this.isFeatureFlagEnabledService.isFeatureEnabled(
|
||||
FeatureFlagKey.IsWorkflowEnabled,
|
||||
FeatureFlagKey.IS_WORKFLOW_ENABLED,
|
||||
workspaceId,
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user