Merge develop into master #6

Merged
lsmyrnaios merged 32 commits from develop into master 2023-11-02 14:05:15 +01:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit bd315848e0 - Show all commits

View File

@ -63,7 +63,7 @@ public class AaiSecurityConfiguration extends WebSecurityConfigurerAdapter {
.csrf().disable()
.authorizeRequests()
.regexMatchers("/actuator/.*").permitAll()
.regexMatchers("/repository/.*/metrics/?.*").permitAll()
.regexMatchers("/repositories/.*/metrics/?.*").permitAll()
.regexMatchers("/metrics").permitAll()
.antMatchers("/api-docs/**","/swagger-ui/**").permitAll()
.anyRequest().authenticated()