diff --git a/src/device/controllers/device.controller.ts b/src/device/controllers/device.controller.ts index 1e9aa5d..3276e39 100644 --- a/src/device/controllers/device.controller.ts +++ b/src/device/controllers/device.controller.ts @@ -60,7 +60,7 @@ export class DeviceController { } @ApiBearerAuth() @UseGuards(JwtAuthGuard) - @Get(':userUuid') + @Get('user/:userUuid') async getDevicesByUser(@Param('userUuid') userUuid: string) { try { return await this.deviceService.getDevicesByUser(userUuid);