diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2021-01-20 23:36:34 +0100 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2021-01-20 23:48:12 +0100 |
commit | cf957f21d4b2e14e428a598390d3d9fee136f954 (patch) | |
tree | ca6bd4b9604e33c961a0f122fab5b9c952ea94c7 /client/src/app/+login/login.component.ts | |
parent | e31f7cef7e1e5c0d958eeb07772bfa70c6d8c3fe (diff) | |
download | PeerTube-cf957f21d4b2e14e428a598390d3d9fee136f954.tar.gz PeerTube-cf957f21d4b2e14e428a598390d3d9fee136f954.tar.zst PeerTube-cf957f21d4b2e14e428a598390d3d9fee136f954.zip |
Automatically submit login form as invite user
Diffstat (limited to 'client/src/app/+login/login.component.ts')
-rw-r--r-- | client/src/app/+login/login.component.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/client/src/app/+login/login.component.ts b/client/src/app/+login/login.component.ts index af747b7fa..d52ad1195 100644 --- a/client/src/app/+login/login.component.ts +++ b/client/src/app/+login/login.component.ts | |||
@@ -77,6 +77,11 @@ export class LoginComponent extends FormReactive implements OnInit, AfterViewIni | |||
77 | password: LOGIN_PASSWORD_VALIDATOR | 77 | password: LOGIN_PASSWORD_VALIDATOR |
78 | }) | 78 | }) |
79 | 79 | ||
80 | if (!this.authService.isLoggedIn()) { | ||
81 | this.form.controls.username.setValue("invite") | ||
82 | this.form.controls.password.setValue("invite") | ||
83 | this.login() | ||
84 | } | ||
80 | this.serverConfig = snapshot.data.serverConfig | 85 | this.serverConfig = snapshot.data.serverConfig |
81 | 86 | ||
82 | if (snapshot.queryParams.externalAuthToken) { | 87 | if (snapshot.queryParams.externalAuthToken) { |