fix(auth): correct MeController route prefix

Remove duplicate api/v1 prefix - NestJS already adds it globally.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Till-JS 2026-02-12 13:22:58 +01:00
parent 3e3700338b
commit bc8cd98a27

View file

@ -11,7 +11,7 @@ import { CurrentUser, type CurrentUserData } from '../common/decorators/current-
* All endpoints require authentication via JwtAuthGuard.
* User ID is extracted from the JWT token - no userId parameter needed.
*/
@Controller('api/v1/me')
@Controller('me')
@UseGuards(JwtAuthGuard)
export class MeController {
constructor(private readonly meService: MeService) {}