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
7 lines
180 B
TypeScript
7 lines
180 B
TypeScript
import { UserVideoRateType } from './user-video-rate.type'
|
|
import { Video } from '../video.model'
|
|
|
|
export interface AccountVideoRate {
|
|
video: Video
|
|
rating: UserVideoRateType
|
|
}
|