readme updated

This commit is contained in:
ycc
2022-04-20 15:25:05 +02:00
parent 5f3238e9f6
commit 4be754b679
10 changed files with 140 additions and 26 deletions

View File

@ -164,6 +164,39 @@
}
}
},
"post": {
"tags": [
"t"
],
"description": "get all Datas",
"operationId": "TableController.TablePost",
"parameters": [
{
"in": "path",
"name": "table",
"description": "Name of the table",
"required": true,
"type": "string"
},
{
"in": "body",
"name": "body",
"description": "TableQuery",
"required": true,
"schema": {
"$ref": "#/definitions/TableQuery"
}
}
],
"responses": {
"200": {
"description": "{string} success !"
},
"403": {
"description": "no table"
}
}
},
"delete": {
"tags": [
"t"
@ -356,6 +389,10 @@
"title": "Credential",
"type": "object"
},
"TableQuery": {
"title": "TableQuery",
"type": "object"
},
"true": {
"title": "true",
"type": "object"

View File

@ -109,6 +109,28 @@ paths:
description: '{string} success !'
"403":
description: no table
post:
tags:
- t
description: get all Datas
operationId: TableController.TablePost
parameters:
- in: path
name: table
description: Name of the table
required: true
type: string
- in: body
name: body
description: TableQuery
required: true
schema:
$ref: '#/definitions/TableQuery'
responses:
"200":
description: '{string} success !'
"403":
description: no table
delete:
tags:
- t
@ -237,6 +259,9 @@ definitions:
Credential:
title: Credential
type: object
TableQuery:
title: TableQuery
type: object
"true":
title: "true"
type: object