import { User } from '@db/entities/User'; import { getSharedWorkflowIds } from '@/WorkflowHelpers'; import { ExecutionsService } from './executions.service'; export class EEExecutionsService extends ExecutionsService { /** * Function to get the workflow Ids for a User regardless of role */ static async getWorkflowIdsForUser(user: User): Promise { // Get all workflows return getSharedWorkflowIds(user); } }