diff --git a/src/modules/auth/auth.controller.ts b/src/modules/auth/auth.controller.ts index 41f2167..a4928e7 100644 --- a/src/modules/auth/auth.controller.ts +++ b/src/modules/auth/auth.controller.ts @@ -23,7 +23,7 @@ export class AuthController { } @Get('/user-logged') - @UseGuards(AuthGuard()) + @UseGuards(AuthGuard('jwt')) @UserLoggedSwagger() @ApiBearerAuth() async userLogged(@LoggedUser() user: UsersEntity) {