feat: add qualification creation component and route
Some checks failed
Playwright Tests / test (pull_request) Failing after 1m19s

This commit is contained in:
Jan K9f 2025-01-22 09:03:52 +01:00
commit 9b80777fc3
Signed by: jank
GPG key ID: 50620ADD22CD330B
8 changed files with 65 additions and 2 deletions

View file

@ -7,6 +7,7 @@ import { MitarbeiterBearbeitenViewComponent } from "./components/mitarbeiter-bea
import { AuthGuard } from "./service/auth.service";
import { MitarbeiterErstellenComponent } from "./components/mitarbeiter-erstellen/mitarbeiter-erstellen.component";
import { QualifikationsverwaltungComponent } from "./components/qualifikationsverwaltung/qualifikationsverwaltung.component";
import { QulifikationErstellenComponent } from "./components/qualifikation-erstellen/qualifikation-erstellen.component";
export const routes: Routes = [
{
@ -18,6 +19,11 @@ export const routes: Routes = [
component: MitarbeiterverwaltungViewComponent,
canActivate: [AuthGuard],
},
{
path: "qualifikationerstellen",
component: QulifikationErstellenComponent,
canActivate: [AuthGuard],
},
{
path: "mitarbeitererstellen",
component: MitarbeiterErstellenComponent,