... | ... | @@ -193,8 +193,24 @@ Aqui estão os repositórios disponíveis e seus métodos: |
|
|
- [User Repository](#user-repository)
|
|
|
|
|
|
#### 📄 Restaurant Repository (`restaurant-repository.ts`)
|
|
|
Repositório responsável pelo gerenciamento dos dados dos restaurantes(criação, buscas, etc.).
|
|
|
|
|
|
##### 🛠 Métodos
|
|
|
- **`create( profilePhoto, bannerPhoto, name, description, address, email, password, averagePrice, phone)`**
|
|
|
Cria um novo restaurante e salva no banco de dados.
|
|
|
|
|
|
- **`findOne(id: string)`**
|
|
|
Busca por um restaurante pelo seu id.
|
|
|
|
|
|
- **`findAll()`**
|
|
|
Busca todos os restaurantes existentes.
|
|
|
|
|
|
- **`findByEmail(email: string)`**
|
|
|
Busca por um restaurante pelo seu email.
|
|
|
|
|
|
- **`findTagsByIds(tagIds: string[])`**
|
|
|
Busca por todos os restaurantes com as tags informadas pelos seu ids.
|
|
|
|
|
|
---
|
|
|
|
|
|
#### 📄 Tag Repository (`tag-repository.ts`)
|
... | ... | @@ -242,6 +258,15 @@ Aqui estão as routes disponíveis e seus métodos: |
|
|
#### 📄 Restaurant Route (`restaurant-route.ts`)
|
|
|
|
|
|
##### 🛤️ Rotas
|
|
|
- **`GET`** `/restaurants`
|
|
|
Retorna todos os restaurantes existentes.
|
|
|
|
|
|
- **`POST`** `/restaurants`
|
|
|
Cria um novo restaurante.
|
|
|
|
|
|
- **`GET`** `/restaurants/:id`
|
|
|
Retorna um restaurante com o id especificado.
|
|
|
|
|
|
---
|
|
|
|
|
|
#### 📄 Tag Route (`tag-route.ts`)
|
... | ... | |