]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+video-channels/video-channel-edit/video-channel-edit.ts
Add missing docker credentials env
[github/Chocobozzz/PeerTube.git] / client / src / app / +video-channels / video-channel-edit / video-channel-edit.ts
1 import { FormReactive } from '@app/shared/shared-forms'
2 import { VideoChannel } from '@app/shared/shared-main'
3
4 export abstract class MyVideoChannelEdit extends FormReactive {
5 videoChannel: VideoChannel
6
7 abstract isCreation (): boolean
8 abstract getFormButtonTitle (): string
9
10 get instanceHost () {
11 return window.location.host
12 }
13
14 // Should be implemented by the child
15 isBulkUpdateVideosDisplayed () {
16 return false
17 }
18 }