c100a6142e
* 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
5 lines
115 B
TypeScript
5 lines
115 B
TypeScript
function isRatingValid (value: any) {
|
|
return value === 'like' || value === 'dislike'
|
|
}
|
|
|
|
export { isRatingValid }
|