mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 20:01:09 +02:00
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:
parent
3e3700338b
commit
bc8cd98a27
1 changed files with 1 additions and 1 deletions
|
|
@ -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) {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue