]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+my-account/my-account-video-channels/my-account-video-channel-edit.ts
Clean up change password validation
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account-video-channels / my-account-video-channel-edit.ts
CommitLineData
08c1efbe 1import { FormReactive } from '@app/shared'
e1807a94 2import { VideoChannel } from '@app/shared/video-channel/video-channel.model'
08c1efbe
C
3
4export abstract class MyAccountVideoChannelEdit extends FormReactive {
e1807a94
C
5 // We need it even in the create component because it's used in the edit template
6 videoChannelToUpdate: VideoChannel
7
08c1efbe
C
8 abstract isCreation (): boolean
9 abstract getFormButtonTitle (): string
10}