Skip to content
Snippets Groups Projects

Variable refactor

Merged Torbjørn Antonsen requested to merge variable-refactor into main
11 files
+ 38
42
Compare changes
  • Side-by-side
  • Inline
Files
11
@@ -54,7 +54,7 @@ public class SecurityConfiguration {
return httpSecurity
.csrf(AbstractHttpConfigurer::disable)
.authorizeHttpRequests(auth -> {
auth.requestMatchers("/api/").permitAll();
auth.requestMatchers("/api/**").permitAll();
auth.anyRequest().authenticated();
})
Loading