diff options
author | Chocobozzz <me@florianbigard.com> | 2020-11-18 15:29:38 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2020-11-18 15:29:38 +0100 |
commit | 0aa52e170727ac6bdf441bcaa2353ae0b8a354ed (patch) | |
tree | 52fa047cf9970590cab1dcc7a3e5caa8eb004171 /client/src/app/+videos | |
parent | ff2cac9fa361a3c5489078f441ed54230c045971 (diff) | |
download | PeerTube-0aa52e170727ac6bdf441bcaa2353ae0b8a354ed.tar.gz PeerTube-0aa52e170727ac6bdf441bcaa2353ae0b8a354ed.tar.zst PeerTube-0aa52e170727ac6bdf441bcaa2353ae0b8a354ed.zip |
Add ability to display all channel/account videos
Diffstat (limited to 'client/src/app/+videos')
-rw-r--r-- | client/src/app/+videos/video-list/video-local.component.ts | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/client/src/app/+videos/video-list/video-local.component.ts b/client/src/app/+videos/video-list/video-local.component.ts index 07063d4d4..20dd61db9 100644 --- a/client/src/app/+videos/video-list/video-local.component.ts +++ b/client/src/app/+videos/video-list/video-local.component.ts | |||
@@ -39,11 +39,7 @@ export class VideoLocalComponent extends AbstractVideoList implements OnInit, On | |||
39 | ngOnInit () { | 39 | ngOnInit () { |
40 | super.ngOnInit() | 40 | super.ngOnInit() |
41 | 41 | ||
42 | if (this.authService.isLoggedIn()) { | 42 | this.enableAllFilterIfPossible() |
43 | const user = this.authService.getUser() | ||
44 | this.displayModerationBlock = user.hasRight(UserRight.SEE_ALL_VIDEOS) | ||
45 | } | ||
46 | |||
47 | this.generateSyndicationList() | 43 | this.generateSyndicationList() |
48 | } | 44 | } |
49 | 45 | ||
@@ -77,7 +73,7 @@ export class VideoLocalComponent extends AbstractVideoList implements OnInit, On | |||
77 | } | 73 | } |
78 | 74 | ||
79 | toggleModerationDisplay () { | 75 | toggleModerationDisplay () { |
80 | this.filter = this.filter === 'local' ? 'all-local' as 'all-local' : 'local' as 'local' | 76 | this.filter = this.buildLocalFilter(this.filter, 'local') |
81 | 77 | ||
82 | this.reloadVideos() | 78 | this.reloadVideos() |
83 | } | 79 | } |