X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2F%2Bmy-account%2Fmy-account-video-channels%2Fmy-account-video-channel-edit.ts;h=355cb4f55b4e8f188b2648cfe3a515054b4139be;hb=14aa85562cb83559d20105b4ddb4bf8b2340578a;hp=4dc65dd99632f997dfe81656f7efc2142e27d7ae;hpb=88108880bbdba473cfe36ecbebc1c3c4f972e102;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/+my-account/my-account-video-channels/my-account-video-channel-edit.ts b/client/src/app/+my-account/my-account-video-channels/my-account-video-channel-edit.ts index 4dc65dd99..355cb4f55 100644 --- a/client/src/app/+my-account/my-account-video-channels/my-account-video-channel-edit.ts +++ b/client/src/app/+my-account/my-account-video-channels/my-account-video-channel-edit.ts @@ -9,6 +9,11 @@ export abstract class MyAccountVideoChannelEdit extends FormReactive { abstract isCreation (): boolean abstract getFormButtonTitle (): string - // FIXME: We need this method so angular does not complain in the child template + // We need this method so angular does not complain in child template that doesn't need this onAvatarChange (formData: FormData) { /* empty */ } + + // Should be implemented by the child + isBulkUpdateVideosDisplayed () { + return false + } }