-
Notifications
You must be signed in to change notification settings - Fork 2
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
Showing
24 changed files
with
201 additions
and
52 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,10 +3,7 @@ name: CI | |
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
- "*" | ||
|
||
jobs: | ||
build: | ||
|
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 |
---|---|---|
|
@@ -3,10 +3,7 @@ name: Build with Gradle | |
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
- "*" | ||
|
||
jobs: | ||
build: | ||
|
6 changes: 4 additions & 2 deletions
6
.github/workflows/stage-cd.yml → .github/workflows/dev-cd.yml
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
15 changes: 15 additions & 0 deletions
15
simtong-application/src/main/kotlin/team/comit/simtong/domain/user/dto/AdminSignInRequest.kt
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,15 @@ | ||
package team.comit.simtong.domain.user.dto | ||
|
||
/** | ||
* | ||
* 관리자의 로그인을 정보를 전달하는 AdminSignInRequest | ||
* | ||
* @author kimbeomjin | ||
* @date 2023/01/01 | ||
* @version 1.1.0 | ||
**/ | ||
data class AdminSignInRequest( | ||
val employeeNumber: Int, | ||
|
||
val password: String | ||
) |
15 changes: 0 additions & 15 deletions
15
simtong-application/src/main/kotlin/team/comit/simtong/domain/user/dto/SignInRequest.kt
This file was deleted.
Oops, something went wrong.
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
17 changes: 17 additions & 0 deletions
17
simtong-application/src/main/kotlin/team/comit/simtong/domain/user/dto/UserSignInRequest.kt
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,17 @@ | ||
package team.comit.simtong.domain.user.dto | ||
|
||
/** | ||
* | ||
* 일반 사용자의 로그인을 정보를 전달하는 UserSignInRequest | ||
* | ||
* @author kimbeomjin | ||
* @date 2022/09/08 | ||
* @version 1.0.0 | ||
**/ | ||
data class UserSignInRequest( | ||
val employeeNumber: Int, | ||
|
||
val password: String, | ||
|
||
val deviceToken: String | ||
) |
17 changes: 17 additions & 0 deletions
17
...-application/src/main/kotlin/team/comit/simtong/domain/user/spi/CommandDeviceTokenPort.kt
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,17 @@ | ||
package team.comit.simtong.domain.user.spi | ||
|
||
import team.comit.simtong.domain.user.model.DeviceToken | ||
|
||
/** | ||
* | ||
* DeviceToken Domain에 관한 명령을 하는 CommandDeviceTokenPort | ||
* | ||
* @author kimbeomjin | ||
* @date 2022/12/31 | ||
* @version 1.1.0 | ||
**/ | ||
interface CommandDeviceTokenPort { | ||
|
||
fun save(deviceToken: DeviceToken): DeviceToken | ||
|
||
} |
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
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
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
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
16 changes: 16 additions & 0 deletions
16
simtong-domain/src/main/kotlin/team/comit/simtong/domain/user/model/DeviceToken.kt
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,16 @@ | ||
package team.comit.simtong.domain.user.model | ||
|
||
import java.util.UUID | ||
|
||
/** | ||
* | ||
* User Aggregate의 디바이스 토큰 관리를 담당하는 DeviceToken | ||
* | ||
* @author kimbeomjin | ||
* @date 2023/01/01 | ||
* @version 1.1.0 | ||
**/ | ||
data class DeviceToken( | ||
val userId: UUID, | ||
val token: String | ||
) |
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
Oops, something went wrong.