diff options
author | Chocobozzz <me@florianbigard.com> | 2019-05-31 16:57:01 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-05-31 16:57:01 +0200 |
commit | 1e66b987cd578fc97471cc429199af453a5daba6 (patch) | |
tree | 0057325fe6d40cbf249bca7e1a845f4ea4ba0701 /client/src/app/+my-account/my-account-video-channels/my-account-video-channel-edit.ts | |
parent | 7d14d4d2ca82cc43c93b45bb1f90af975cfbf67c (diff) | |
download | PeerTube-1e66b987cd578fc97471cc429199af453a5daba6.tar.gz PeerTube-1e66b987cd578fc97471cc429199af453a5daba6.tar.zst PeerTube-1e66b987cd578fc97471cc429199af453a5daba6.zip |
Add checkbox to bulk update videos support field
Diffstat (limited to 'client/src/app/+my-account/my-account-video-channels/my-account-video-channel-edit.ts')
-rw-r--r-- | client/src/app/+my-account/my-account-video-channels/my-account-video-channel-edit.ts | 5 |
1 files changed, 5 insertions, 0 deletions
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..7479442d1 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 | |||
@@ -11,4 +11,9 @@ export abstract class MyAccountVideoChannelEdit extends FormReactive { | |||
11 | 11 | ||
12 | // FIXME: We need this method so angular does not complain in the child template | 12 | // FIXME: We need this method so angular does not complain in the child template |
13 | onAvatarChange (formData: FormData) { /* empty */ } | 13 | onAvatarChange (formData: FormData) { /* empty */ } |
14 | |||
15 | // Should be implemented by the child | ||
16 | isBulkUpdateVideosDisplayed () { | ||
17 | return false | ||
18 | } | ||
14 | } | 19 | } |