]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/videos/video-sort-field.type.ts
Support studio transcoding in peertube runner
[github/Chocobozzz/PeerTube.git] / shared / models / videos / video-sort-field.type.ts
1 export type VideoSortField =
2 'name' | '-name' |
3 'duration' | '-duration' |
4 'publishedAt' | '-publishedAt' |
5 'originallyPublishedAt' | '-originallyPublishedAt' |
6 'createdAt' | '-createdAt' |
7 'views' | '-views' |
8 'likes' | '-likes' |
9
10 // trending sorts
11 'trending' | '-trending' |
12 'hot' | '-hot' |
13 'best' | '-best'