diff options
Diffstat (limited to 'server/middlewares/oauth.ts')
-rw-r--r-- | server/middlewares/oauth.ts | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/server/middlewares/oauth.ts b/server/middlewares/oauth.ts index 468e41810..d545b3e58 100644 --- a/server/middlewares/oauth.ts +++ b/server/middlewares/oauth.ts | |||
@@ -1,3 +1,5 @@ | |||
1 | import 'express-validator' | ||
2 | import * as express from 'express' | ||
1 | import * as OAuthServer from 'express-oauth-server' | 3 | import * as OAuthServer from 'express-oauth-server' |
2 | 4 | ||
3 | import { OAUTH_LIFETIME } from '../initializers' | 5 | import { OAUTH_LIFETIME } from '../initializers' |
@@ -9,7 +11,7 @@ const oAuthServer = new OAuthServer({ | |||
9 | model: require('../lib/oauth-model') | 11 | model: require('../lib/oauth-model') |
10 | }) | 12 | }) |
11 | 13 | ||
12 | function authenticate (req, res, next) { | 14 | function authenticate (req: express.Request, res: express.Response, next: express.NextFunction) { |
13 | oAuthServer.authenticate()(req, res, function (err) { | 15 | oAuthServer.authenticate()(req, res, function (err) { |
14 | if (err) { | 16 | if (err) { |
15 | logger.error('Cannot authenticate.', { error: err }) | 17 | logger.error('Cannot authenticate.', { error: err }) |
@@ -22,7 +24,7 @@ function authenticate (req, res, next) { | |||
22 | }) | 24 | }) |
23 | } | 25 | } |
24 | 26 | ||
25 | function token (req, res, next) { | 27 | function token (req: express.Request, res: express.Response, next: express.NextFunction) { |
26 | return oAuthServer.token()(req, res, next) | 28 | return oAuthServer.token()(req, res, next) |
27 | } | 29 | } |
28 | 30 | ||