Update Docs

This commit is contained in:
Kekskurse 2019-07-23 15:05:23 +02:00
parent 9395cb9c53
commit 018e019d91
1 changed files with 41 additions and 1 deletions

View File

@ -457,6 +457,46 @@ paths:
type: integer
itemsPerPage:
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:
get:
tags:
@ -711,7 +751,7 @@ paths:
type: string
description: "Refresh tolen to create a new Access Token"
/server/settings:
post:
get:
tags:
- "server"
summary: "Get the Server-Settings"