This website requires JavaScript.
Explore
Help
Sign In
OpenCloud
/
PeerTube
mirror of
https://github.com/Chocobozzz/PeerTube
Watch
1
Star
0
Fork
You've already forked PeerTube
0
Code
Issues
Releases
Wiki
Activity
e8cb8d107b
PeerTube
/
shared
/
models
/
feeds
/
feed-format.enum.ts
6 lines
81 B
TypeScript
Raw
Normal View
History
Unescape
Escape
Reorganize shared models
2020-08-06 14:58:01 +02:00
export
const
enum
FeedFormat
{
feature: initial syndication feeds support Provides rss 2.0, atom 1.0 and json 1.0 feeds for videos (instance and account-wide) on listings and video-watch views. * still lacks redis caching * still lacks lastBuildDate support * still lacks channel-wide support * still lacks semantic annotation (for licenses, NSFW warnings, etc.) * still lacks love ( ˘ ³˘) * RSS: has MRSS support for torrent lists! * RSS: includes the first torrent in an enclosure * JSON: lists all torrents in the 'attachments' object * ATOM: lacking torrent listing support Advances #23 Partial implementation for the accountId generation in the client, which will need a hotfix to add a way to get the proper account id.
2018-04-17 00:49:04 +02:00
RSS
=
'xml'
,
ATOM
=
'atom'
,
JSON
=
'json'
}