fix rest api quickstart and specify values in openapi spec
This commit is contained in:
parent
d175a6f7ab
commit
65f0267930
|
@ -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'
|
||||
|
|
|
@ -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
|
||||
```
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue