-
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.
Merge pull request #170 from PawWithU/qc/qa-1
qc/qa-1: 1차 QA 반영#2
- Loading branch information
Showing
118 changed files
with
2,782 additions
and
765 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
5 changes: 5 additions & 0 deletions
5
core/data/src/main/java/com/kusitms/connectdog/core/data/api/model/AuthDto.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,5 @@ | ||
package com.kusitms.connectdog.core.data.api.model | ||
|
||
data class AuthDto( | ||
val authCode: String | ||
) |
5 changes: 5 additions & 0 deletions
5
core/data/src/main/java/com/kusitms/connectdog/core/data/api/model/EmailDto.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,5 @@ | ||
package com.kusitms.connectdog.core.data.api.model | ||
|
||
data class EmailDto( | ||
val email: String | ||
) |
5 changes: 5 additions & 0 deletions
5
core/data/src/main/java/com/kusitms/connectdog/core/data/api/model/PhoneDto.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,5 @@ | ||
package com.kusitms.connectdog.core.data.api.model | ||
|
||
data class PhoneDto( | ||
val phone: String | ||
) |
5 changes: 5 additions & 0 deletions
5
...ta/src/main/java/com/kusitms/connectdog/core/data/api/model/intermediator/DuplicateDto.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,5 @@ | ||
package com.kusitms.connectdog.core.data.api.model.intermediator | ||
|
||
data class DuplicateDto( | ||
val isDuplicated: Boolean | ||
) |
7 changes: 7 additions & 0 deletions
7
...java/com/kusitms/connectdog/core/data/api/model/intermediator/IntermediatorAccountInfo.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,7 @@ | ||
package com.kusitms.connectdog.core.data.api.model.intermediator | ||
|
||
data class IntermediatorAccountInfo( | ||
val realName: String, | ||
val phone: String, | ||
val email: 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
8 changes: 8 additions & 0 deletions
8
core/data/src/main/java/com/kusitms/connectdog/core/data/api/model/intermediator/NameDto.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 com.kusitms.connectdog.core.data.api.model.intermediator | ||
|
||
import com.squareup.moshi.JsonClass | ||
|
||
@JsonClass(generateAdapter = true) | ||
data class NameDto( | ||
val name: String | ||
) |
6 changes: 6 additions & 0 deletions
6
core/data/src/main/java/com/kusitms/connectdog/core/data/api/model/volunteer/EmailAuthDto.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,6 @@ | ||
package com.kusitms.connectdog.core.data.api.model.volunteer | ||
|
||
data class EmailAuthDto( | ||
val authCode: String, | ||
val accessToken: String | ||
) |
5 changes: 0 additions & 5 deletions
5
...va/com/kusitms/connectdog/core/data/api/model/volunteer/EmailCertificationResponseItem.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
5 changes: 5 additions & 0 deletions
5
...c/main/java/com/kusitms/connectdog/core/data/api/model/volunteer/PasswordCheckResponse.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,5 @@ | ||
package com.kusitms.connectdog.core.data.api.model.volunteer | ||
|
||
data class PasswordCheckResponse( | ||
val isChecked: Boolean | ||
) |
5 changes: 5 additions & 0 deletions
5
core/data/src/main/java/com/kusitms/connectdog/core/data/api/model/volunteer/PasswordDto.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,5 @@ | ||
package com.kusitms.connectdog.core.data.api.model.volunteer | ||
|
||
data class PasswordDto( | ||
val password: String | ||
) |
20 changes: 20 additions & 0 deletions
20
.../src/main/java/com/kusitms/connectdog/core/data/api/model/volunteer/ReviewDetailWithId.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,20 @@ | ||
package com.kusitms.connectdog.core.data.api.model.volunteer | ||
|
||
data class ReviewDetailWithId( | ||
val profileImageNum: Int, | ||
val dogName: String, | ||
val volunteerNickname: String, | ||
val createdDate: String, | ||
val mainImage: String, | ||
val images: List<String>, | ||
val content: String, | ||
val postId: Long, | ||
val postMainImage: String, | ||
val startDate: String, | ||
val endDate: String, | ||
val departureLoc: String, | ||
val arrivalLoc: String, | ||
val intermediaryId: Long, | ||
val intermediaryName: String, | ||
val reviewId: Long | ||
) |
8 changes: 8 additions & 0 deletions
8
...rc/main/java/com/kusitms/connectdog/core/data/api/model/volunteer/VolunteerAccountInfo.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 com.kusitms.connectdog.core.data.api.model.volunteer | ||
|
||
data class VolunteerAccountInfo( | ||
val name: String, | ||
val phone: String, | ||
val socialType: String?, | ||
val email: 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.