chore(release): first stable release #45

Merged
devitq merged 134 commits from develop into main 2026-05-23 07:28:37 +00:00
Showing only changes of commit f3754d1190 - Show all commits
@@ -21,8 +21,15 @@ class SecurityConfiguration(
}.defaultSuccessUrl("/api/users/me", true)
}.authorizeHttpRequests { auth ->
auth
.requestMatchers("/", "/login/**", "/oauth2/**", "/h2-console/**", "/actuator/health")
.permitAll()
.requestMatchers(
"/",
"/login/**",
"/oauth2/**",
"/h2-console/**",
"/actuator/health",
"/actuator/health/**",
"/actuator/prometheus",
).permitAll()
.requestMatchers("/api/v1/docs/**", "/api/v1/swagger-ui/**", "/swagger-ui/**")
.permitAll()
.requestMatchers(