aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+my-account/my-account-video-channels/my-account-video-channel-edit.ts
blob: ccdd9a3dcba5bff45be17d0e415b2f482140840e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import { FormReactive } from '@app/shared'
import { VideoChannel } from '@app/shared/video-channel/video-channel.model'

export abstract class MyAccountVideoChannelEdit extends FormReactive {
  // We need it even in the create component because it's used in the edit template
  videoChannelToUpdate: VideoChannel

  abstract isCreation (): boolean
  abstract getFormButtonTitle (): string
}