diff --git a/client/apps/webapp/components.d.ts b/client/apps/webapp/components.d.ts index ae0bd8342..92bf4ed7e 100644 --- a/client/apps/webapp/components.d.ts +++ b/client/apps/webapp/components.d.ts @@ -5,7 +5,6 @@ // ------ // Generated by unplugin-vue-components // Read more: https://github.com/vuejs/core/pull/3399 -import { GlobalComponents } from 'vue' export {} @@ -18,11 +17,3 @@ declare module 'vue' { UserNav: typeof import('./src/components/UserNav.vue')['default'] } } - -// For TSX support -declare global { - const RouterLink: typeof import('vue-router')['RouterLink'] - const RouterView: typeof import('vue-router')['RouterView'] - const ThemeSwitcher: typeof import('./src/components/ThemeSwitcher.vue')['default'] - const UserNav: typeof import('./src/components/UserNav.vue')['default'] -} \ No newline at end of file diff --git a/server/engine/build.gradle.kts b/server/engine/build.gradle.kts index af29c2635..172e3bc0d 100644 --- a/server/engine/build.gradle.kts +++ b/server/engine/build.gradle.kts @@ -2,6 +2,7 @@ import com.cvix.buildlogic.common.AppConfiguration plugins { id("app.spring.boot.convention") + id("app.owasp.dependency.check") kotlin("jvm").version(libs.versions.kotlin) kotlin("plugin.spring").version(libs.versions.kotlin) alias(libs.plugins.gradle.git.properties) diff --git a/server/engine/src/main/kotlin/com/cvix/authentication/infrastructure/SecurityConfiguration.kt b/server/engine/src/main/kotlin/com/cvix/authentication/infrastructure/SecurityConfiguration.kt index 670d58598..190adb165 100644 --- a/server/engine/src/main/kotlin/com/cvix/authentication/infrastructure/SecurityConfiguration.kt +++ b/server/engine/src/main/kotlin/com/cvix/authentication/infrastructure/SecurityConfiguration.kt @@ -211,7 +211,6 @@ class SecurityConfiguration( .pathMatchers("/api/**").authenticated() .pathMatchers("/management/health").permitAll() .pathMatchers("/management/info").permitAll() - .pathMatchers("/management/prometheus").permitAll() .pathMatchers("/management/**").hasAuthority(Role.ADMIN.key()) }