fix: remove api/ prefix from Sprint 4 controllers — global prefix already set
All checks were successful
CI/CD — Build & Deploy / Build & Deploy (push) Successful in 33s

This commit is contained in:
2026-03-24 15:08:10 +01:00
parent ac88cbb5ab
commit 708352be65
4 changed files with 4 additions and 4 deletions

View File

@@ -6,7 +6,7 @@ import { InjectRepository } from '@nestjs/typeorm';
import { Repository } from 'typeorm';
import { Character } from '../character/entities/character.entity';
@Controller('api/profile')
@Controller('profile')
export class ProfileController {
constructor(
private readonly profileService: ProfileService,