Merge branch 'master' into develop
[oweals/peertube.git] / client / src / app / +my-account / my-account-video-playlists / my-account-video-playlist-edit.ts
1 import { FormReactive } from '@app/shared'
2 import { VideoChannel } from '@app/shared/video-channel/video-channel.model'
3 import { ServerService } from '@app/core'
4 import { VideoPlaylist } from '@shared/models/videos/playlist/video-playlist.model'
5
6 export abstract class MyAccountVideoPlaylistEdit extends FormReactive {
7   // Declare it here to avoid errors in create template
8   videoPlaylistToUpdate: VideoPlaylist
9   userVideoChannels: { id: number, label: string }[] = []
10
11   abstract isCreation (): boolean
12   abstract getFormButtonTitle (): string
13 }