Merge pull request 'Fixed register re nav #306' (#308) from #306 into support

Reviewed-on: sh-edraft.de/kd_discord_bot#308
Reviewed-by: Ebola-Chan <nick.jungmann@gmail.com>
This commit is contained in:
Sven Heidemann 2023-04-12 22:08:31 +02:00
commit 0ee26ccf3d
2 changed files with 2 additions and 7 deletions

View File

@ -40,7 +40,7 @@ export class ForgetPasswordComponent implements OnInit {
ngOnInit(): void {
this.spinnerService.showSpinner();
if (!this.authService.isLoggedIn$.value) {
if (this.authService.isLoggedIn$.value) {
this.router.navigate(["/dashboard"]);
}

View File

@ -49,7 +49,7 @@ export class RegistrationComponent implements OnInit, OnDestroy {
private settings: SettingsService
) {
this.spinnerService.showSpinner();
if (!this.authService.isLoggedIn$.value) {
if (this.authService.isLoggedIn$.value) {
this.router.navigate(["/dashboard"]);
}
this.spinnerService.hideSpinner();
@ -57,7 +57,6 @@ export class RegistrationComponent implements OnInit, OnDestroy {
ngOnInit(): void {
this.translate.onLangChange.pipe(takeUntil(this.unsubscriber)).subscribe(lang => {
this.confirmPrivacyString = this.translate.instant("auth.register.confirm_privacy", { url: this.settings.getPrivacyURL() });
});
@ -167,8 +166,4 @@ export class RegistrationComponent implements OnInit, OnDestroy {
});
}
}
log($event: Event): void {
console.log($event);
}
}