all food endponit

This commit is contained in:
2026-06-21 16:54:42 +03:30
parent 449cd89287
commit 73c7e55bf3
9 changed files with 159 additions and 11 deletions
@@ -163,10 +163,9 @@ export class RestaurantsService {
async findAllActiveRestaurants(): Promise<ActiveRestaurantListItemDto[]> {
const restaurants = await this.restRepository.findAllActive();
return restaurants.map(({ slug, name, seoTitle, address, score, logo, establishedYear }) => ({
return restaurants.map(({ slug, name, address, logo, establishedYear }) => ({
slug,
name,
title: seoTitle,
address,
logo,
establishedYear,