add special method

This commit is contained in:
2021-09-08 13:11:28 +02:00
parent 01bd6877c6
commit 7de0ab2db9
4 changed files with 66 additions and 1 deletions

View File

@ -1263,6 +1263,30 @@ paths:
# escaping
# -------------------------------------------------------------------
/v1/overhead_advances/flat/{flatId}:
get:
tags: [ "overhead_advance", "flat" ]
summary: Return overhead_advances by $flat
operationId: additional_methods.get_overhead_advances_by_flat
parameters:
- name: flatId
in: path
required: true
schema:
type: integer
responses:
'200':
description: overhead_advances_by_flat response
content:
'application/json':
schema:
type: array
items:
$ref: '#/components/schemas/overhead_advance'
security:
- jwt: ['secret']
components:
securitySchemes:
jwt: