remove outdated badges, add authorization to caption routes
This commit is contained in:
parent
de94ac86a2
commit
64b5c2476a
3 changed files with 27 additions and 36 deletions
12
README.md
12
README.md
|
@ -43,10 +43,6 @@ Be part of a network of multiple small federated, interoperable video hosting pr
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
<a href="https://david-dm.org/Chocobozzz/PeerTube?path=client&type=dev">
|
|
||||||
<img src="https://david-dm.org/Chocobozzz/PeerTube/dev-status.svg?path=client" alt="devDependency Status" />
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<a href="https://automate.browserstack.com/public-build/T2g0SVQyMTJtYVRWaEZQTE9LdU9UU1ZDSkY5dTJ6dGlNRUVIajd4QlIwST0tLVdTQ1NUZ0pUTzRZT3lyZzkvWGNSZ1E9PQ==--278d3c68ae0827ce57e245e9f5a3b8c35d6e2278%">
|
<a href="https://automate.browserstack.com/public-build/T2g0SVQyMTJtYVRWaEZQTE9LdU9UU1ZDSkY5dTJ6dGlNRUVIajd4QlIwST0tLVdTQ1NUZ0pUTzRZT3lyZzkvWGNSZ1E9PQ==--278d3c68ae0827ce57e245e9f5a3b8c35d6e2278%">
|
||||||
<img src="https://automate.browserstack.com/badge.svg?badge_key=T2g0SVQyMTJtYVRWaEZQTE9LdU9UU1ZDSkY5dTJ6dGlNRUVIajd4QlIwST0tLVdTQ1NUZ0pUTzRZT3lyZzkvWGNSZ1E9PQ==--278d3c68ae0827ce57e245e9f5a3b8c35d6e2278%"/>
|
<img src="https://automate.browserstack.com/badge.svg?badge_key=T2g0SVQyMTJtYVRWaEZQTE9LdU9UU1ZDSkY5dTJ6dGlNRUVIajd4QlIwST0tLVdTQ1NUZ0pUTzRZT3lyZzkvWGNSZ1E9PQ==--278d3c68ae0827ce57e245e9f5a3b8c35d6e2278%"/>
|
||||||
</a>
|
</a>
|
||||||
|
@ -65,14 +61,6 @@ Be part of a network of multiple small federated, interoperable video hosting pr
|
||||||
<img alt="test suite status" src="https://github.com/Chocobozzz/PeerTube/workflows/Test%20Suite/badge.svg" />
|
<img alt="test suite status" src="https://github.com/Chocobozzz/PeerTube/workflows/Test%20Suite/badge.svg" />
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<a href="https://david-dm.org/Chocobozzz/PeerTube">
|
|
||||||
<img src="https://david-dm.org/Chocobozzz/PeerTube.svg" alt="Dependencies Status" />
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<a href="https://david-dm.org/Chocobozzz/PeerTube?type=dev">
|
|
||||||
<img src="https://david-dm.org/Chocobozzz/PeerTube/dev-status.svg" alt="devDependency Status" />
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<a href="http://standardjs.com/">
|
<a href="http://standardjs.com/">
|
||||||
<img src="https://img.shields.io/badge/code%20style-standard-brightgreen.svg" alt="JavaScript Style Guide" />
|
<img src="https://img.shields.io/badge/code%20style-standard-brightgreen.svg" alt="JavaScript Style Guide" />
|
||||||
</a>
|
</a>
|
||||||
|
|
|
@ -8,8 +8,5 @@
|
||||||
"netrc-parser": "^3.1.6",
|
"netrc-parser": "^3.1.6",
|
||||||
"webtorrent-hybrid": "^4.0.1"
|
"webtorrent-hybrid": "^4.0.1"
|
||||||
},
|
},
|
||||||
"summon": {
|
|
||||||
"silent": true
|
|
||||||
},
|
|
||||||
"devDependencies": {}
|
"devDependencies": {}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1968,6 +1968,9 @@ paths:
|
||||||
/videos/{id}/captions/{captionLanguage}:
|
/videos/{id}/captions/{captionLanguage}:
|
||||||
put:
|
put:
|
||||||
summary: Add or replace a video caption
|
summary: Add or replace a video caption
|
||||||
|
security:
|
||||||
|
- OAuth2:
|
||||||
|
- user
|
||||||
tags:
|
tags:
|
||||||
- Video Captions
|
- Video Captions
|
||||||
parameters:
|
parameters:
|
||||||
|
@ -1993,6 +1996,9 @@ paths:
|
||||||
description: video or language not found
|
description: video or language not found
|
||||||
delete:
|
delete:
|
||||||
summary: Delete a video caption
|
summary: Delete a video caption
|
||||||
|
security:
|
||||||
|
- OAuth2:
|
||||||
|
- user
|
||||||
tags:
|
tags:
|
||||||
- Video Captions
|
- Video Captions
|
||||||
parameters:
|
parameters:
|
||||||
|
|
Loading…
Reference in a new issue