-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
6.28. Добавит создание пользователей в
UserController
.
Последним шагом закончим с обработчиком `create` в `UserController`. Он отвечает за добавление новых пользователей в базу данных. Проведём похожие действия, как и при создании `CategoryController`. Сначала проверим существование пользователя. Если он существует, то вернём код `409`. Обратите внимание, мы напрямую не вызываем `send`. Вместо этого бросаем ошибку типа `HttpError`. Если всё хорошо и пользователь создан, то вернём объект пользователя без поля «пароль». Структуру объекта для клиента предварительно описали в `UserDto`.
- Loading branch information
1 parent
417fd02
commit e878a3c
Showing
2 changed files
with
38 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { Expose } from 'class-transformer'; | ||
|
||
export class UserRdo { | ||
@Expose() | ||
public email: string ; | ||
|
||
@Expose() | ||
public avatarPath: string; | ||
|
||
@Expose() | ||
public firstname: string; | ||
|
||
@Expose() | ||
public lastname: string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters