diff --git a/angular.json b/angular.json index 954709f..2cbf973 100644 --- a/angular.json +++ b/angular.json @@ -93,5 +93,8 @@ } } } + }, + "cli": { + "analytics": false } } diff --git a/bun.lockb b/bun.lockb index 6fd82b0..d459e54 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/package.json b/package.json index f1859dd..c62d2a6 100644 --- a/package.json +++ b/package.json @@ -29,12 +29,12 @@ "@angular/cli": "^18.2.0", "@angular/compiler-cli": "^18.2.0", "@types/jasmine": "~5.1.0", - "jasmine-core": "~5.2.0", + "jasmine-core": "~5.5.0", "karma": "~6.4.0", "karma-chrome-launcher": "~3.2.0", "karma-coverage": "~2.2.0", "karma-jasmine": "~5.1.0", "karma-jasmine-html-reporter": "~2.1.0", - "typescript": "~5.5.2" + "typescript": "~5.7.0" } } diff --git a/src/app/app.routes.ts b/src/app/app.routes.ts index c9981e2..0300bf6 100644 --- a/src/app/app.routes.ts +++ b/src/app/app.routes.ts @@ -6,6 +6,7 @@ import { QualifikatonBearbeitenViewComponent } from "./components/qualifikaton-b import { MitarbeiterBearbeitenViewComponent } from "./components/mitarbeiter-bearbeiten-view/mitarbeiter-bearbeiten-view.component"; import { AuthGuard } from "./service/auth.service"; import { MitarbeiterErstellenComponent } from "./components/mitarbeiter-erstellen/mitarbeiter-erstellen.component"; +import { QualifikationsverwaltungComponent } from "./components/qualifikationsverwaltung/qualifikationsverwaltung.component"; export const routes: Routes = [ { @@ -27,6 +28,11 @@ export const routes: Routes = [ component: MitarbeiterBearbeitenViewComponent, canActivate: [AuthGuard], }, + { + path: "qualifikationsverwaltung", + component: QualifikationsverwaltungComponent, + canActivate: [AuthGuard], + }, { path: "mitarbeiterdetails", component: EmployeeDetailComponent, diff --git a/src/app/components/qualifikation-form/qualifikation-form.component.html b/src/app/components/qualifikation-form/qualifikation-form.component.html index a881a16..a6652d1 100644 --- a/src/app/components/qualifikation-form/qualifikation-form.component.html +++ b/src/app/components/qualifikation-form/qualifikation-form.component.html @@ -1,6 +1,6 @@