Skip to content

Commit

Permalink
Update SecurityConfig.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Nonononoki committed Jan 27, 2024
1 parent 4896d84 commit b0999b1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
.permitAll().requestMatchers("/robots.txt").permitAll().requestMatchers("/.well-known/assetlinks.json")
.permitAll().requestMatchers("/text/*").permitAll().requestMatchers("/manifest/**").permitAll()
.requestMatchers("/fonts/**").permitAll().requestMatchers("/error").permitAll().requestMatchers("/info").permitAll()
.requestMatchers("/user/delete-account-confirm").permitAll()
.requestMatchers("/user/delete-account-confirm").permitAll().requestMatchers("/delete-account/*").permitAll()

.anyRequest().authenticated().and().formLogin().loginPage("/login").and().logout()
.deleteCookies(COOKIE_SESSION, COOKIE_REMEMBER).logoutUrl("/logout").logoutSuccessUrl("/?logout").and()
Expand Down

0 comments on commit b0999b1

Please sign in to comment.