URL angepasst

This commit is contained in:
Bastian Wagner
2024-09-12 09:50:57 +02:00
parent 2359c9c5e9
commit 2362f04704
17 changed files with 164 additions and 13 deletions

View File

@@ -11,6 +11,7 @@ import { CreateClientComponent } from './components/create-client/create-client.
import { CreateHotToastRef, HotToastService } from '@ngxpert/hot-toast';
import {MatBottomSheet, MatBottomSheetModule, MatBottomSheetRef} from '@angular/material/bottom-sheet';
import { LoginChartComponent } from './components/charts/login/login.chart.component';
import { HelpComponent } from './components/help/help.component';
@Component({
selector: 'app-dashboard',
@@ -38,7 +39,6 @@ export class DashboardComponent implements OnInit {
this.router.navigateByUrl("/login");
return;
}
this.load();
}
@@ -123,6 +123,10 @@ export class DashboardComponent implements OnInit {
logout() {
this.userService.logout();
}
openHelp() {
this.dialog.open(HelpComponent)
}
}