mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-02-25 18:55:32 -06:00
* Add /users/me/videos/ratings endpoint * Move ratings endpoint from users to accounts * /accounts/:name/ratings: add support for rating= and sort= * Restrict ratings list to owner * Wording and better way to ensure current account
6 lines
115 B
TypeScript
6 lines
115 B
TypeScript
function isRatingValid (value: any) {
|
|
return value === 'like' || value === 'dislike'
|
|
}
|
|
|
|
export { isRatingValid }
|