]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/models/user/user-video-rate-interface.ts
Use global uuid instead of remoteId for videos
[github/Chocobozzz/PeerTube.git] / server / models / user / user-video-rate-interface.ts
CommitLineData
e02643f3 1import * as Sequelize from 'sequelize'
6fcd19ba 2import * as Promise from 'bluebird'
e02643f3 3
4771e000 4import { VideoRateType } from '../../../shared/models/videos/video-rate.type'
ee9e7b61 5
e02643f3 6export namespace UserVideoRateMethods {
0a6658fd 7 export type Load = (userId: number, videoId: number, transaction: Sequelize.Transaction) => Promise<UserVideoRateInstance>
e02643f3
C
8}
9
10export interface UserVideoRateClass {
11 load: UserVideoRateMethods.Load
12}
13
14export interface UserVideoRateAttributes {
ee9e7b61 15 type: VideoRateType
e02643f3
C
16}
17
69818c93 18export interface UserVideoRateInstance extends UserVideoRateClass, UserVideoRateAttributes, Sequelize.Instance<UserVideoRateAttributes> {
e02643f3
C
19 id: number
20 createdAt: Date
21 updatedAt: Date
22}
23
24export interface UserVideoRateModel extends UserVideoRateClass, Sequelize.Model<UserVideoRateInstance, UserVideoRateAttributes> {}