aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/+my-library/+my-video-channels/my-video-channel-edit.ts
blob: 33bb90f145578192cd5938179ebbac7c54e8e258 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                                       
 
                                                               
                            
 

                                        
 



                               



                                       
 
import { FormReactive } from '@app/shared/shared-forms'
import { VideoChannel } from '@app/shared/shared-main'

export abstract class MyVideoChannelEdit extends FormReactive {
  videoChannel: VideoChannel

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

  get instanceHost () {
    return window.location.host
  }

  // Should be implemented by the child
  isBulkUpdateVideosDisplayed () {
    return false
  }
}