Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into dev
Browse files Browse the repository at this point in the history
Taejin1221 authored Sep 8, 2024
2 parents f12a0b4 + 26b9781 commit b262de8
Showing 2 changed files with 4 additions and 6 deletions.
8 changes: 3 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -86,7 +86,6 @@ fabric.properties

.idea/*

!.idea/codeStyles
!.idea/runConfigurations

### Java ###
@@ -175,9 +174,8 @@ gradle-app.setting
# Java heap dump
*.hprof

# End of https://www.toptal.com/developers/gitignore/api/java,gradle,macos,intellij+all
application.yml
application-test.yml

# End of https://www.toptal.com/developers/gitignore/api/java,gradle,macos,intellij+allauth.yml
oauth.yml
database.yml
jwt.yml
oauth.yml
2 changes: 1 addition & 1 deletion src/main/java/kaboo/kaboo_auth/config/SecurityConfig.java
Original file line number Diff line number Diff line change
@@ -45,7 +45,7 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
http.oauth2Login(auth -> auth
.userInfoEndpoint(userInfoEndpointConfig -> userInfoEndpointConfig.userService(customOAuth2Service))
.successHandler(loginSuccessHandler));

return http.build();
}

0 comments on commit b262de8

Please sign in to comment.