diff --git a/src/npc/npc.controller.ts b/src/npc/npc.controller.ts index ce3483e..e5b477f 100644 --- a/src/npc/npc.controller.ts +++ b/src/npc/npc.controller.ts @@ -2,7 +2,7 @@ import { Controller, Get, Query, Req, UseGuards } from '@nestjs/common'; import { NpcService } from './npc.service'; import { AuthGuard } from '../auth/guards/auth.guard'; -@Controller('api/npcs') +@Controller('npcs') @UseGuards(AuthGuard) export class NpcController { constructor(private readonly npcService: NpcService) {}