aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/middlewares/async.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/middlewares/async.ts')
-rw-r--r--server/middlewares/async.ts7
1 files changed, 5 insertions, 2 deletions
diff --git a/server/middlewares/async.ts b/server/middlewares/async.ts
index 9692f9be7..534891899 100644
--- a/server/middlewares/async.ts
+++ b/server/middlewares/async.ts
@@ -1,9 +1,12 @@
1import { Request, Response, NextFunction, RequestHandler } from 'express'
2import { eachSeries } from 'async' 1import { eachSeries } from 'async'
2import { NextFunction, Request, RequestHandler, Response } from 'express'
3 3
4// Syntactic sugar to avoid try/catch in express controllers 4// Syntactic sugar to avoid try/catch in express controllers
5// Thanks: https://medium.com/@Abazhenov/using-async-await-in-express-with-node-8-b8af872c0016 5// Thanks: https://medium.com/@Abazhenov/using-async-await-in-express-with-node-8-b8af872c0016
6function asyncMiddleware (fun: RequestHandler | RequestHandler[]) { 6
7export type RequestPromiseHandler = (req: Request, res: Response, next: NextFunction) => Promise<any>
8
9function asyncMiddleware (fun: RequestPromiseHandler | RequestPromiseHandler[]) {
7 return (req: Request, res: Response, next: NextFunction) => { 10 return (req: Request, res: Response, next: NextFunction) => {
8 if (Array.isArray(fun) === true) { 11 if (Array.isArray(fun) === true) {
9 return eachSeries(fun as RequestHandler[], (f, cb) => { 12 return eachSeries(fun as RequestHandler[], (f, cb) => {