fix: NpcController prefix — remove duplicate /api
All checks were successful
CI/CD — Build & Deploy / Build & Deploy (push) Successful in 36s

This commit is contained in:
2026-03-25 01:08:09 +01:00
parent 34d1711cee
commit f44ce0531f

View File

@@ -2,7 +2,7 @@ import { Controller, Get, Query, Req, UseGuards } from '@nestjs/common';
import { NpcService } from './npc.service'; import { NpcService } from './npc.service';
import { AuthGuard } from '../auth/guards/auth.guard'; import { AuthGuard } from '../auth/guards/auth.guard';
@Controller('api/npcs') @Controller('npcs')
@UseGuards(AuthGuard) @UseGuards(AuthGuard)
export class NpcController { export class NpcController {
constructor(private readonly npcService: NpcService) {} constructor(private readonly npcService: NpcService) {}