feat: add qualification creation component and route
Some checks failed
Playwright Tests / test (pull_request) Failing after 1m19s
Some checks failed
Playwright Tests / test (pull_request) Failing after 1m19s
This commit is contained in:
parent
08adf21da9
commit
9b80777fc3
8 changed files with 65 additions and 2 deletions
|
@ -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,
|
||||
|
|
Reference in a new issue