File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,8 @@ import { ContentsModule } from '../contents/contents.module';
1414import { OAuthService } from './oauth.service' ;
1515import { CategoryModule } from '../categories/category.module' ;
1616import { RedisModule } from '../infra/redis/redis.module' ;
17+ import { OauthV2Controller } from './oauth.v2.controller' ;
18+ import { OAuthV2Service } from './oauth.v2.service' ;
1719
1820const accessTokenExpiration = TWOHOUR ;
1921export const refreshTokenExpirationInCache = 60 * 60 * 24 * 365 ; // 1 year
@@ -34,14 +36,15 @@ export const verifyEmailExpiration = 60 * 5;
3436 CategoryModule ,
3537 RedisModule ,
3638 ] ,
37- controllers : [ AuthController , OAuthController ] ,
39+ controllers : [ AuthController , OAuthController , OauthV2Controller ] ,
3840 providers : [
3941 AuthService ,
4042 JwtStrategy ,
4143 OAuthService ,
4244 OAuthUtil ,
4345 GoogleStrategy ,
4446 customJwtService ,
47+ OAuthV2Service ,
4548 ] ,
4649 exports : [ AuthService ] ,
4750} )
You can’t perform that action at this time.
0 commit comments