aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+admin/moderation/moderation.component.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-10-16 11:51:28 +0200
committerChocobozzz <me@florianbigard.com>2018-10-16 16:41:36 +0200
commit92ea70a782181b987b3547a0d5816e314efb5112 (patch)
tree6ae1fd2c90ffadf7d6c1a3b872eb63876498600f /client/src/app/+admin/moderation/moderation.component.ts
parent26370ce469913f48b1c10b91d68ac8cb67586ce1 (diff)
downloadPeerTube-92ea70a782181b987b3547a0d5816e314efb5112.tar.gz
PeerTube-92ea70a782181b987b3547a0d5816e314efb5112.tar.zst
PeerTube-92ea70a782181b987b3547a0d5816e314efb5112.zip
Fix code typos
Diffstat (limited to 'client/src/app/+admin/moderation/moderation.component.ts')
-rw-r--r--client/src/app/+admin/moderation/moderation.component.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/app/+admin/moderation/moderation.component.ts b/client/src/app/+admin/moderation/moderation.component.ts
index 7f85f920e..2b2618933 100644
--- a/client/src/app/+admin/moderation/moderation.component.ts
+++ b/client/src/app/+admin/moderation/moderation.component.ts
@@ -17,11 +17,11 @@ export class ModerationComponent {
17 return this.auth.getUser().hasRight(UserRight.MANAGE_VIDEO_BLACKLIST) 17 return this.auth.getUser().hasRight(UserRight.MANAGE_VIDEO_BLACKLIST)
18 } 18 }
19 19
20 hasAccountsBlacklistRight () { 20 hasAccountsBlocklistRight () {
21 return this.auth.getUser().hasRight(UserRight.MANAGE_ACCOUNTS_BLOCKLIST) 21 return this.auth.getUser().hasRight(UserRight.MANAGE_ACCOUNTS_BLOCKLIST)
22 } 22 }
23 23
24 hasServersBlacklistRight () { 24 hasServersBlocklistRight () {
25 return this.auth.getUser().hasRight(UserRight.MANAGE_SERVERS_BLOCKLIST) 25 return this.auth.getUser().hasRight(UserRight.MANAGE_SERVERS_BLOCKLIST)
26 } 26 }
27} 27}