added bitacora_mesa
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user