From f44ce0531f63244d7195f48c417667c833dce793 Mon Sep 17 00:00:00 2001 From: Tetardtek Date: Wed, 25 Mar 2026 01:08:09 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20NpcController=20prefix=20=E2=80=94=20rem?= =?UTF-8?q?ove=20duplicate=20/api?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/npc/npc.controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {}