fix rest api quickstart and specify values in openapi spec

pull/1415/head
Rigel Kent 2018-11-19 22:07:29 +01:00
parent d175a6f7ab
commit 65f0267930
No known key found for this signature in database
GPG Key ID: EA12971B0E438F36
2 changed files with 9 additions and 4 deletions

View File

@ -101,14 +101,13 @@ x-tagGroups:
- Video
- Video Channel
- Video Comment
- Video Abuse
- Video Following
- Video Rate
- name: Moderation
tags:
- Video Abuse
- Video Blacklist
- name: Public Instance Information
- name: Instance Configuration
tags:
- Config
- Server Following
@ -316,6 +315,12 @@ paths:
description: The state of the job
schema:
type: string
enum:
- active
- completed
- failed
- waiting
- delayed
- $ref: '#/components/parameters/start'
- $ref: '#/components/parameters/count'
- $ref: '#/components/parameters/sort'

View File

@ -43,7 +43,7 @@ Response example:
Just use the `access_token` in the `Authorization` header:
```
$ curl -H 'Authorization: Bearer 90286a0bdf0f7315d9d3fe8dabf9e1d2be9c97d0' https://peertube.example.com/api/v1/jobs/complete
$ curl -H 'Authorization: Bearer 90286a0bdf0f7315d9d3fe8dabf9e1d2be9c97d0' https://peertube.example.com/api/v1/jobs/completed
```
@ -51,4 +51,4 @@ $ curl -H 'Authorization: Bearer 90286a0bdf0f7315d9d3fe8dabf9e1d2be9c97d0' https
```
$ curl https://peertube.example.com/api/v1/videos
```
```