Add NoContentResponse and update CreatedResponse to allow body (#385)

* Add NoContentResponse and update CreatedResponse to allow body

* Add changes

* Remove body from created

* .

* .
This commit is contained in:
Timothee Guerin 2021-04-21 06:39:27 -07:00 коммит произвёл GitHub
Родитель 5ad8a45c39
Коммит 4914101cd5
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -17,6 +17,10 @@ model AcceptedResponse {
@header statusCode: 202;
}
model NoContentResponse {
@header statusCode: 204;
}
model MovedResponse {
@header statusCode: 301;
... LocationHeader;