Skip to content

Commit

Permalink
fix: /ui
Browse files Browse the repository at this point in the history
  • Loading branch information
Quentin-Guillemin committed Jan 12, 2024
1 parent 2ff64a0 commit 6e791bb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {

http.authorizeHttpRequests(authz -> authz
.antMatchers(HttpMethod.OPTIONS, "/**").permitAll()
.antMatchers("/health-check", "/api/config").permitAll()
.antMatchers("/health-check", "/api/config", "/ui/**").permitAll()
.antMatchers("/api/**").authenticated()
.anyRequest().denyAll()
);
Expand Down

0 comments on commit 6e791bb

Please sign in to comment.