Skip to content

Commit

Permalink
SHIBUI-2591
Browse files Browse the repository at this point in the history
Merge telemetry changes for develop branch
  • Loading branch information
chasegawa committed Jul 7, 2023
1 parent 03ae6af commit ea44bba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
http.csrf((csrf) -> csrf.csrfTokenRequestHandler(requestHandler));
http
.authorizeHttpRequests()
.requestMatchers("/unsecured/**/*","/entities/**/*","/actuator/**").permitAll()
.requestMatchers("/unsecured/**/*","/entities/**/*","/actuator/**", "/api/beacon/send").permitAll()
.anyRequest().hasAnyRole(acceptedAuthenticationRoles)
.and().exceptionHandling().accessDeniedHandler((request, response, accessDeniedException) -> response.sendRedirect("/unsecured/error.html"))
.and().authenticationProvider(new SimpleAuthenticationProvider(adminUserService())).formLogin()
Expand Down

0 comments on commit ea44bba

Please sign in to comment.