aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/pods/remote-video/remote-video-request.model.ts
blob: 56f8136c283e385c6d90bb720698f96df33857a4 (plain) (blame)
1
2
3
4
5
6
7
8
9
export interface RemoteVideoRequest {
  type: RemoteVideoRequestType
  data: any
}

export type RemoteVideoRequestType = 'add-video' | 'update-video' | 'remove-video' |
                                     'add-channel' | 'update-channel' | 'remove-channel' |
                                     'report-abuse' |
                                     'add-author' | 'remove-author'