-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
67e7451
commit f4095e9
Showing
14 changed files
with
28 additions
and
11 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+122 Bytes
(110%)
build/classes/java/main/com/example/taskqueue/config/WebMvcConfig.class
Binary file not shown.
Binary file modified
BIN
+353 Bytes
(110%)
...asses/java/main/com/example/taskqueue/oauth/currentUser/CurrentUserArgumentResolver.class
Binary file not shown.
Binary file modified
BIN
-280 Bytes
(94%)
build/classes/java/main/com/example/taskqueue/oauth/handler/OAuth2LoginSuccessHandler.class
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
src/main/java/com/example/taskqueue/oauth/dto/SessionUser.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package com.example.taskqueue.oauth.dto; | ||
|
||
import com.example.taskqueue.oauth.CustomOAuth2User; | ||
import lombok.Getter; | ||
|
||
@Getter | ||
public class SessionUser { | ||
private String name; | ||
private String email; | ||
public SessionUser(CustomOAuth2User oAuth2User) { | ||
this.name = oAuth2User.getName(); | ||
this.email = oAuth2User.getEmail(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters