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:
Tomi Turtiainen
2024-01-17 17:08:50 +02:00
committed by GitHub
parent 2eb829a6b4
commit 9a1cc56806
369 changed files with 1041 additions and 928 deletions

View File

@@ -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);
}
}