forked from KNU-HAEDAL/Birthday_Funding_BE
-
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.
KNU-HAEDAL#1 feat: 회원가입을 위한 폴더 구조 제작
- Loading branch information
Showing
15 changed files
with
76 additions
and
13 deletions.
There are no files selected for viewing
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
4 changes: 4 additions & 0 deletions
4
src/main/java/team/haedal/gifticionfunding/controller/auth/AuthController.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,4 @@ | ||
package team.haedal.gifticionfunding.controller.auth; | ||
|
||
public class AuthController { | ||
} |
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
4 changes: 4 additions & 0 deletions
4
src/main/java/team/haedal/gifticionfunding/controller/user/UserController.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,4 @@ | ||
package team.haedal.gifticionfunding.controller.user; | ||
|
||
public class UserController { | ||
} |
4 changes: 4 additions & 0 deletions
4
src/main/java/team/haedal/gifticionfunding/entity/auth/AuthReqestModel.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,4 @@ | ||
package team.haedal.gifticionfunding.entity.auth; | ||
|
||
public class AuthReqestModel { | ||
} |
4 changes: 4 additions & 0 deletions
4
src/main/java/team/haedal/gifticionfunding/entity/user/UserRefreshToken.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,4 @@ | ||
package team.haedal.gifticionfunding.entity.user; | ||
|
||
public class UserRefreshToken { | ||
} |
4 changes: 4 additions & 0 deletions
4
src/main/java/team/haedal/gifticionfunding/global/config/properties/AppProperties.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,4 @@ | ||
package team.haedal.gifticionfunding.global.config.properties; | ||
|
||
public class AppProperties { | ||
} |
4 changes: 4 additions & 0 deletions
4
src/main/java/team/haedal/gifticionfunding/global/config/properties/CorsProperties.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,4 @@ | ||
package team.haedal.gifticionfunding.global.config.properties; | ||
|
||
public class CorsProperties { | ||
} |
4 changes: 4 additions & 0 deletions
4
src/main/java/team/haedal/gifticionfunding/global/config/security/JwtConfig.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,4 @@ | ||
package team.haedal.gifticionfunding.global.config.security; | ||
|
||
public class JwtConfig { | ||
} |
4 changes: 4 additions & 0 deletions
4
src/main/java/team/haedal/gifticionfunding/global/config/security/SecurityConfig.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,4 @@ | ||
package team.haedal.gifticionfunding.global.config.security; | ||
|
||
public class SecurityConfig { | ||
} |
7 changes: 7 additions & 0 deletions
7
src/main/java/team/haedal/gifticionfunding/oauth/token/AuthToken.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,7 @@ | ||
package team.haedal.gifticionfunding.oauth.token; | ||
|
||
import lombok.extern.slf4j.Slf4j; | ||
|
||
|
||
public class AuthToken { | ||
} |
4 changes: 4 additions & 0 deletions
4
src/main/java/team/haedal/gifticionfunding/repository/user/UserRefreshTokenRepository.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,4 @@ | ||
package team.haedal.gifticionfunding.repository.user; | ||
|
||
public class UserRefreshTokenRepository { | ||
} |
4 changes: 4 additions & 0 deletions
4
src/main/java/team/haedal/gifticionfunding/service/user/UserService.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,4 @@ | ||
package team.haedal.gifticionfunding.service.user; | ||
|
||
public class UserService { | ||
} |
4 changes: 4 additions & 0 deletions
4
src/main/java/team/haedal/gifticionfunding/utils/CookieUtil.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,4 @@ | ||
package team.haedal.gifticionfunding.utils; | ||
|
||
public class CookieUtil { | ||
} |
4 changes: 4 additions & 0 deletions
4
src/main/java/team/haedal/gifticionfunding/utils/HeaderUtil.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,4 @@ | ||
package team.haedal.gifticionfunding.utils; | ||
|
||
public class HeaderUtil { | ||
} |