fix bug in create rest

This commit is contained in:
2025-12-26 22:34:40 +03:30
parent 9a938bf8cd
commit 21da5d52f8
3 changed files with 15 additions and 3 deletions
@@ -77,6 +77,7 @@ export class RestaurantsController {
@ApiOperation({ summary: 'Create a new restaurant' })
@Post('super-admin/restaurants')
createRestaurant(@Body() createRestaurantDto: CreateRestaurantDto) {
console.log('create rest')
return this.restaurantsService.create(createRestaurantDto);
}