fix(server): validate token permission (#21802)

pull/21813/head
Jason Rasmussen 2025-09-11 08:09:58 +07:00 committed by GitHub
parent 74e14b6495
commit b4c72fb609
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

@ -49,7 +49,7 @@ export class AuthController {
}
@Post('validateToken')
@Authenticated()
@Authenticated({ permission: false })
@HttpCode(HttpStatus.OK)
validateAccessToken(): ValidateAccessTokenResponseDto {
return { authStatus: true };