diff options
Diffstat (limited to 'server/middlewares/oauth.ts')
-rw-r--r-- | server/middlewares/oauth.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/server/middlewares/oauth.ts b/server/middlewares/oauth.ts index 31ae1e000..07bbded57 100644 --- a/server/middlewares/oauth.ts +++ b/server/middlewares/oauth.ts | |||
@@ -1,11 +1,11 @@ | |||
1 | import OAuthServer = require('express-oauth-server') | 1 | import OAuthServer = require('express-oauth-server') |
2 | 2 | ||
3 | const constants = require('../initializers/constants') | 3 | import { OAUTH_LIFETIME } from '../initializers' |
4 | const logger = require('../helpers/logger') | 4 | import { logger } from '../helpers' |
5 | 5 | ||
6 | const oAuthServer = new OAuthServer({ | 6 | const oAuthServer = new OAuthServer({ |
7 | accessTokenLifetime: constants.OAUTH_LIFETIME.ACCESS_TOKEN, | 7 | accessTokenLifetime: OAUTH_LIFETIME.ACCESS_TOKEN, |
8 | refreshTokenLifetime: constants.OAUTH_LIFETIME.REFRESH_TOKEN, | 8 | refreshTokenLifetime: OAUTH_LIFETIME.REFRESH_TOKEN, |
9 | model: require('../lib/oauth-model') | 9 | model: require('../lib/oauth-model') |
10 | }) | 10 | }) |
11 | 11 | ||