diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-07-25 20:17:28 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-07-25 20:17:28 +0200 |
commit | 291e8d3eed88fe714fb74ad897ac2c67347a85ff (patch) | |
tree | 20b4f9b8500ab4d9651d2a067fcf2948a6bfc9a4 /client/src/app | |
parent | 3d09cdbf90902894c841d0a5ddb35eb772c53b8b (diff) | |
download | PeerTube-291e8d3eed88fe714fb74ad897ac2c67347a85ff.tar.gz PeerTube-291e8d3eed88fe714fb74ad897ac2c67347a85ff.tar.zst PeerTube-291e8d3eed88fe714fb74ad897ac2c67347a85ff.zip |
Add ability to limit user registrations
Diffstat (limited to 'client/src/app')
-rw-r--r-- | client/src/app/core/config/config.service.ts | 2 | ||||
-rw-r--r-- | client/src/app/core/menu/menu.component.html | 2 | ||||
-rw-r--r-- | client/src/app/core/menu/menu.component.ts | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/client/src/app/core/config/config.service.ts b/client/src/app/core/config/config.service.ts index b8cb15e84..acdc12cc6 100644 --- a/client/src/app/core/config/config.service.ts +++ b/client/src/app/core/config/config.service.ts | |||
@@ -10,7 +10,7 @@ export class ConfigService { | |||
10 | 10 | ||
11 | private config: ServerConfig = { | 11 | private config: ServerConfig = { |
12 | signup: { | 12 | signup: { |
13 | enabled: false | 13 | allowed: false |
14 | } | 14 | } |
15 | } | 15 | } |
16 | 16 | ||
diff --git a/client/src/app/core/menu/menu.component.html b/client/src/app/core/menu/menu.component.html index 63a1c03c5..fb4c4a6a9 100644 --- a/client/src/app/core/menu/menu.component.html +++ b/client/src/app/core/menu/menu.component.html | |||
@@ -14,7 +14,7 @@ | |||
14 | </a> | 14 | </a> |
15 | </div> | 15 | </div> |
16 | 16 | ||
17 | <a *ngIf="!isLoggedIn && isRegistrationEnabled()" routerLink="/signup" routerLinkActive="active"> | 17 | <a *ngIf="!isLoggedIn && isRegistrationAllowed()" routerLink="/signup" routerLinkActive="active"> |
18 | <span class="hidden-xs glyphicon glyphicon-user"></span> | 18 | <span class="hidden-xs glyphicon glyphicon-user"></span> |
19 | Signup | 19 | Signup |
20 | </a> | 20 | </a> |
diff --git a/client/src/app/core/menu/menu.component.ts b/client/src/app/core/menu/menu.component.ts index b725f64a7..669fc6572 100644 --- a/client/src/app/core/menu/menu.component.ts +++ b/client/src/app/core/menu/menu.component.ts | |||
@@ -36,8 +36,8 @@ export class MenuComponent implements OnInit { | |||
36 | ) | 36 | ) |
37 | } | 37 | } |
38 | 38 | ||
39 | isRegistrationEnabled () { | 39 | isRegistrationAllowed () { |
40 | return this.configService.getConfig().signup.enabled | 40 | return this.configService.getConfig().signup.allowed |
41 | } | 41 | } |
42 | 42 | ||
43 | isUserAdmin () { | 43 | isUserAdmin () { |