Merge pull request #4251 from tsiegleauq/login-redirect-issues
Allow reload on login children
This commit is contained in:
commit
a6043ba8d5
@ -58,8 +58,17 @@ export class OpenSlidesService extends OpenSlidesComponent {
|
||||
this.operator.guestsEnabled = response.guest_enabled;
|
||||
if (!response.user && !response.guest_enabled) {
|
||||
this.redirectUrl = location.pathname;
|
||||
// Goto login, if the user isn't login and guests are not allowed
|
||||
this.router.navigate(['/login']);
|
||||
|
||||
// let the use navigate and reload on every login-page
|
||||
if (this.redirectUrl.includes('/login/')) {
|
||||
// Allow free navigation in the children of the login page
|
||||
// required for resetting password and direct navigation to legal notice
|
||||
// and privacy policy.
|
||||
this.router.navigate([this.redirectUrl]);
|
||||
} else {
|
||||
// Goto login, if the user isn't login and guests are not allowed
|
||||
this.router.navigate(['/login']);
|
||||
}
|
||||
} else {
|
||||
await this.afterLoginBootup(response.user_id);
|
||||
}
|
||||
|
@ -58,21 +58,23 @@ export class ResetPasswordConfirmComponent extends BaseComponent implements OnIn
|
||||
public ngOnInit(): void {
|
||||
super.setTitle('Reset password');
|
||||
this.activatedRoute.queryParams.subscribe(params => {
|
||||
if (!params.user_id || !params.token) {
|
||||
setTimeout(() => {
|
||||
this.matSnackBar.open('');
|
||||
this.matSnackBar.open(
|
||||
this.translate.instant('The link is broken. Please contact your system administrator.'),
|
||||
this.translate.instant('OK'),
|
||||
{
|
||||
duration: 0
|
||||
}
|
||||
);
|
||||
this.router.navigate(['/']);
|
||||
});
|
||||
} else {
|
||||
this.user_id = params.user_id;
|
||||
this.token = params.token;
|
||||
if (!this.user_id && !this.token) {
|
||||
if (!params.user_id || !params.token) {
|
||||
setTimeout(() => {
|
||||
this.matSnackBar.open('');
|
||||
this.matSnackBar.open(
|
||||
this.translate.instant('The link is broken. Please contact your system administrator.'),
|
||||
this.translate.instant('OK'),
|
||||
{
|
||||
duration: 0
|
||||
}
|
||||
);
|
||||
this.router.navigate(['/login']);
|
||||
});
|
||||
} else {
|
||||
this.user_id = params.user_id;
|
||||
this.token = params.token;
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user