swagger docs update
This commit is contained in:
parent
3ff0e6d641
commit
ff81fcc1ce
3 changed files with 347 additions and 0 deletions
|
|
@ -1,5 +1,12 @@
|
|||
basePath: /api/v2
|
||||
definitions:
|
||||
merch.ListResponse:
|
||||
properties:
|
||||
merch_uuid:
|
||||
type: string
|
||||
name:
|
||||
type: string
|
||||
type: object
|
||||
merch.MandarakeDTO:
|
||||
properties:
|
||||
link:
|
||||
|
|
@ -118,6 +125,82 @@ paths:
|
|||
summary: Добавить новый мерч
|
||||
tags:
|
||||
- Merch
|
||||
/merch/{uuid}:
|
||||
delete:
|
||||
description: Пометить мерч как удаленный по его uuid
|
||||
parameters:
|
||||
- description: merch_uuid
|
||||
in: path
|
||||
name: uuid
|
||||
required: true
|
||||
type: string
|
||||
responses:
|
||||
"200":
|
||||
description: OK
|
||||
schema:
|
||||
$ref: '#/definitions/merch.MerchDTO'
|
||||
"400":
|
||||
description: Bad Request
|
||||
schema:
|
||||
$ref: '#/definitions/responses.ErrorResponse400'
|
||||
"500":
|
||||
description: Internal Server Error
|
||||
schema:
|
||||
$ref: '#/definitions/responses.ErrorResponse500'
|
||||
security:
|
||||
- BearerAuth: []
|
||||
summary: Пометить мерч как удаленный
|
||||
tags:
|
||||
- Merch
|
||||
get:
|
||||
description: Получить все записи мерча
|
||||
responses:
|
||||
"200":
|
||||
description: OK
|
||||
schema:
|
||||
items:
|
||||
$ref: '#/definitions/merch.ListResponse'
|
||||
type: array
|
||||
"400":
|
||||
description: Bad Request
|
||||
schema:
|
||||
$ref: '#/definitions/responses.ErrorResponse400'
|
||||
"500":
|
||||
description: Internal Server Error
|
||||
schema:
|
||||
$ref: '#/definitions/responses.ErrorResponse500'
|
||||
security:
|
||||
- BearerAuth: []
|
||||
summary: Получить все записи мерча
|
||||
tags:
|
||||
- Merch
|
||||
put:
|
||||
description: Обновить информацию про мерч по его uuid в json-е
|
||||
parameters:
|
||||
- description: merch_uuid
|
||||
in: body
|
||||
name: body
|
||||
required: true
|
||||
schema:
|
||||
$ref: '#/definitions/merch.MerchDTO'
|
||||
responses:
|
||||
"200":
|
||||
description: OK
|
||||
schema:
|
||||
$ref: '#/definitions/merch.MerchDTO'
|
||||
"400":
|
||||
description: Bad Request
|
||||
schema:
|
||||
$ref: '#/definitions/responses.ErrorResponse400'
|
||||
"500":
|
||||
description: Internal Server Error
|
||||
schema:
|
||||
$ref: '#/definitions/responses.ErrorResponse500'
|
||||
security:
|
||||
- BearerAuth: []
|
||||
summary: Обновить информацию про мерч
|
||||
tags:
|
||||
- Merch
|
||||
/user:
|
||||
delete:
|
||||
description: Помечает пользователя как удаленного по его uuid из токена
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue