Skip to content

Commit

Permalink
Merge pull request #7 from InjeRecipe/#3-JWT-Token
Browse files Browse the repository at this point in the history
fix: SecurityConfig Setting
  • Loading branch information
Gdm0714 committed Jan 15, 2024
2 parents b3efee2 + a3062e6 commit e8e9a84
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
.and()
.authorizeRequests()
.requestMatchers("/","/css/**","/images/**","/js/**","/favicon.ico","/h2-console/**", "/sign-up").permitAll()
.anyRequest().permitAll()
.anyRequest().authenticated()
.and()
.oauth2Login()
.successHandler(myAuthenticationSuccessHandler)
Expand Down

0 comments on commit e8e9a84

Please sign in to comment.