added bitacora_mesa

This commit is contained in:
2026-01-21 15:13:21 -06:00
parent 0bbac3b9b3
commit 0571681656
15 changed files with 124 additions and 18 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
import { Controller, Body, Patch, Param, Delete, Get } from '@nestjs/common';
import { Controller, Body, Patch, Param, Get } from '@nestjs/common';
import { MesaService } from './mesa.service';
import { UpdateMesaDto } from './dto/update-mesa.dto';
@@ -6,7 +6,7 @@ import { UpdateMesaDto } from './dto/update-mesa.dto';
export class MesaController {
constructor(private readonly mesaService: MesaService) {}
@Get('all')
@Get()
async findAll() {
return this.mesaService.findAll();
}