Update Docs
This commit is contained in:
parent
9395cb9c53
commit
018e019d91
1 changed files with 41 additions and 1 deletions
|
@ -457,6 +457,46 @@ paths:
|
||||||
type: integer
|
type: integer
|
||||||
itemsPerPage:
|
itemsPerPage:
|
||||||
type: integer
|
type: integer
|
||||||
|
post:
|
||||||
|
tags:
|
||||||
|
- "apps"
|
||||||
|
summary: "Create a new APP"
|
||||||
|
description: ""
|
||||||
|
produces:
|
||||||
|
- "application/json"
|
||||||
|
consumes:
|
||||||
|
- "multipart/form-data"
|
||||||
|
- "application/json"
|
||||||
|
parameters:
|
||||||
|
- in: formData
|
||||||
|
name: name
|
||||||
|
description: "Name of the app"
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
- in: formData
|
||||||
|
name: description
|
||||||
|
description: "Description of the App"
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
- in: formData
|
||||||
|
name: url
|
||||||
|
description: "App Webpage URL"
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
responses:
|
||||||
|
200:
|
||||||
|
description: "List of Apps"
|
||||||
|
schema:
|
||||||
|
type: "object"
|
||||||
|
properties:
|
||||||
|
data:
|
||||||
|
$ref: '#/definitions/AppForOwner'
|
||||||
|
success:
|
||||||
|
type: "boolean"
|
||||||
|
example: true
|
||||||
|
msg:
|
||||||
|
type: "string"
|
||||||
|
example: ""
|
||||||
/app/find:
|
/app/find:
|
||||||
get:
|
get:
|
||||||
tags:
|
tags:
|
||||||
|
@ -711,7 +751,7 @@ paths:
|
||||||
type: string
|
type: string
|
||||||
description: "Refresh tolen to create a new Access Token"
|
description: "Refresh tolen to create a new Access Token"
|
||||||
/server/settings:
|
/server/settings:
|
||||||
post:
|
get:
|
||||||
tags:
|
tags:
|
||||||
- "server"
|
- "server"
|
||||||
summary: "Get the Server-Settings"
|
summary: "Get the Server-Settings"
|
||||||
|
|
Reference in a new issue