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

This commit is contained in:
Jason Rasmussen 2025-09-11 08:09:58 -04:00 committed by GitHub
parent 74e14b6495
commit b4c72fb609
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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