-
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.
- ํ์ ํํด ๊ธฐ๋ฅ ์ถ๊ฐ - ์ฌ๋ผ์ด๋ ๋์์ธ ๋ณ๊ฒฝ - ๋ฅ๋งํฌ ์ง์ ๋ฐฉ์ ๋ณ๊ฒฝ (11๋ฒ๊ฐ์ ๋ค์ด๋ฒ ์ค๋งํธ์คํ ์ด) - ์ธ์ฑ ์ ๋ฐ์ดํธ ๊ตฌํ - ์ํ ์ต๋ ๋ฑ๋ก ๊ฐ์ ์ ํ - ๋น๋ฐ๋ฒํธ ์ฐพ๊ธฐ, ์ด๋ฉ์ผ ์ธ์ฆ ๊ตฌํ Co-Authored-By: ootr47 <[email protected]> Co-Authored-By: EunhoKang <[email protected]> Co-Authored-By: ByeongIk Choi <[email protected]> Co-Authored-By: ์๋ฌธ๊ธฐ <[email protected]>
- Loading branch information
1 parent
f818ce8
commit ee2e43b
Showing
101 changed files
with
3,296 additions
and
385 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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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
9 changes: 9 additions & 0 deletions
9
android/app/src/main/java/app/priceguard/data/dto/deleteaccount/DeleteAccountRequest.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,9 @@ | ||
package app.priceguard.data.dto.deleteaccount | ||
|
||
import kotlinx.serialization.Serializable | ||
|
||
@Serializable | ||
data class DeleteAccountRequest( | ||
val email: String, | ||
val password: String | ||
) |
9 changes: 9 additions & 0 deletions
9
android/app/src/main/java/app/priceguard/data/dto/deleteaccount/DeleteAccountResponse.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,9 @@ | ||
package app.priceguard.data.dto.deleteaccount | ||
|
||
import kotlinx.serialization.Serializable | ||
|
||
@Serializable | ||
data class DeleteAccountResponse( | ||
val statusCode: Int, | ||
val message: String | ||
) |
10 changes: 10 additions & 0 deletions
10
android/app/src/main/java/app/priceguard/data/dto/isverified/IsEmailVerifiedResponse.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,10 @@ | ||
package app.priceguard.data.dto.isverified | ||
|
||
import kotlinx.serialization.Serializable | ||
|
||
@Serializable | ||
data class IsEmailVerifiedResponse( | ||
val statusCode: Int, | ||
val message: String, | ||
val verified: Boolean? = null | ||
) |
8 changes: 8 additions & 0 deletions
8
android/app/src/main/java/app/priceguard/data/dto/password/ResetPasswordRequest.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,8 @@ | ||
package app.priceguard.data.dto.password | ||
|
||
import kotlinx.serialization.Serializable | ||
|
||
@Serializable | ||
data class ResetPasswordRequest( | ||
val password: String | ||
) |
9 changes: 9 additions & 0 deletions
9
android/app/src/main/java/app/priceguard/data/dto/password/ResetPasswordResponse.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,9 @@ | ||
package app.priceguard.data.dto.password | ||
|
||
import kotlinx.serialization.Serializable | ||
|
||
@Serializable | ||
data class ResetPasswordResponse( | ||
val statusCode: Int, | ||
val message: 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
8 changes: 8 additions & 0 deletions
8
...d/app/src/main/java/app/priceguard/data/dto/verifyemail/RequestVerificationCodeRequest.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,8 @@ | ||
package app.priceguard.data.dto.verifyemail | ||
|
||
import kotlinx.serialization.Serializable | ||
|
||
@Serializable | ||
data class RequestVerificationCodeRequest( | ||
val email: String | ||
) |
9 changes: 9 additions & 0 deletions
9
.../app/src/main/java/app/priceguard/data/dto/verifyemail/RequestVerificationCodeResponse.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,9 @@ | ||
package app.priceguard.data.dto.verifyemail | ||
|
||
import kotlinx.serialization.Serializable | ||
|
||
@Serializable | ||
data class RequestVerificationCodeResponse( | ||
val statusCode: Int, | ||
val message: String | ||
) |
9 changes: 9 additions & 0 deletions
9
android/app/src/main/java/app/priceguard/data/dto/verifyemail/VerifyEmailRequest.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,9 @@ | ||
package app.priceguard.data.dto.verifyemail | ||
|
||
import kotlinx.serialization.Serializable | ||
|
||
@Serializable | ||
data class VerifyEmailRequest( | ||
val email: String, | ||
val verificationCode: String | ||
) |
10 changes: 10 additions & 0 deletions
10
android/app/src/main/java/app/priceguard/data/dto/verifyemail/VerifyEmailResponse.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,10 @@ | ||
package app.priceguard.data.dto.verifyemail | ||
|
||
import kotlinx.serialization.Serializable | ||
|
||
@Serializable | ||
data class VerifyEmailResponse( | ||
val statusCode: Int, | ||
val message: String, | ||
val verifyToken: String? = null | ||
) |
Oops, something went wrong.