mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
fix: Set '@typescript-eslint/return-await' rule to 'always' for node code (no-changelog) (#8363)
Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
This commit is contained in:
@@ -17,15 +17,15 @@ export class ExecutionsController {
|
||||
|
||||
private async getAccessibleWorkflowIds(user: User) {
|
||||
return isSharingEnabled()
|
||||
? this.workflowSharingService.getSharedWorkflowIds(user)
|
||||
: this.workflowSharingService.getSharedWorkflowIds(user, ['owner']);
|
||||
? await this.workflowSharingService.getSharedWorkflowIds(user)
|
||||
: await this.workflowSharingService.getSharedWorkflowIds(user, ['owner']);
|
||||
}
|
||||
|
||||
@Get('/')
|
||||
async getExecutionsList(req: ExecutionRequest.GetAll) {
|
||||
const workflowIds = await this.getAccessibleWorkflowIds(req.user);
|
||||
|
||||
return this.executionService.getExecutionsList(req, workflowIds);
|
||||
return await this.executionService.getExecutionsList(req, workflowIds);
|
||||
}
|
||||
|
||||
@Get('/:id')
|
||||
@@ -33,21 +33,21 @@ export class ExecutionsController {
|
||||
const workflowIds = await this.getAccessibleWorkflowIds(req.user);
|
||||
|
||||
return isSharingEnabled()
|
||||
? this.enterpriseExecutionService.getExecution(req, workflowIds)
|
||||
: this.executionService.getExecution(req, workflowIds);
|
||||
? await this.enterpriseExecutionService.getExecution(req, workflowIds)
|
||||
: await this.executionService.getExecution(req, workflowIds);
|
||||
}
|
||||
|
||||
@Post('/:id/retry')
|
||||
async retryExecution(req: ExecutionRequest.Retry) {
|
||||
const workflowIds = await this.getAccessibleWorkflowIds(req.user);
|
||||
|
||||
return this.executionService.retryExecution(req, workflowIds);
|
||||
return await this.executionService.retryExecution(req, workflowIds);
|
||||
}
|
||||
|
||||
@Post('/delete')
|
||||
async deleteExecutions(req: ExecutionRequest.Delete) {
|
||||
const workflowIds = await this.getAccessibleWorkflowIds(req.user);
|
||||
|
||||
return this.executionService.deleteExecutions(req, workflowIds);
|
||||
return await this.executionService.deleteExecutions(req, workflowIds);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user