-
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 #43 from MONEYMONG/release/release-1.4.0
Release/release 1.4.0
- Loading branch information
Showing
45 changed files
with
1,502 additions
and
499 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 |
---|---|---|
@@ -1,5 +1,13 @@ | ||
## 요약 | ||
|
||
## 작업내용 | ||
- [ ] 기능개발 | ||
- [ ] 버그개선 | ||
- [ ] 리팩토링 | ||
- [ ] 핫픽스 | ||
- [ ] 빌드 파일 수정 | ||
- [ ] 기타 | ||
|
||
## 스크린샷 | ||
|
||
## 기타 |
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
Empty file.
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: 2 additions & 2 deletions
4
core/model/src/main/java/com/moneymong/moneymong/model/sign/UnivResponse.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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
package com.moneymong.moneymong.model.sign | ||
|
||
data class UnivResponse( | ||
val universityName: String, | ||
val grade: Int | ||
val universityName: String?, | ||
val grade: Int? | ||
) |
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
6 changes: 4 additions & 2 deletions
6
data/src/main/java/com/moneymong/moneymong/data/datasource/agency/AgencyRemoteDataSource.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 |
---|---|---|
@@ -1,15 +1,17 @@ | ||
package com.moneymong.moneymong.data.datasource.agency | ||
|
||
import com.moneymong.moneymong.model.agency.AgenciesGetResponse | ||
import com.moneymong.moneymong.model.agency.AgencyGetResponse | ||
import com.moneymong.moneymong.model.agency.AgencyJoinRequest | ||
import com.moneymong.moneymong.model.agency.AgencyRegisterRequest | ||
import com.moneymong.moneymong.model.agency.AgencyJoinResponse | ||
import com.moneymong.moneymong.model.agency.AgenciesGetResponse | ||
import com.moneymong.moneymong.model.agency.AgencyRegisterRequest | ||
import com.moneymong.moneymong.model.agency.MyAgencyResponse | ||
import com.moneymong.moneymong.model.agency.RegisterAgencyResponse | ||
|
||
interface AgencyRemoteDataSource { | ||
suspend fun registerAgency(request: AgencyRegisterRequest): Result<RegisterAgencyResponse> | ||
suspend fun getAgencies(page: Int, size: Int): Result<AgenciesGetResponse> | ||
suspend fun fetchMyAgencyList(): Result<List<MyAgencyResponse>> | ||
suspend fun fetchAgencyByName(agencyName: String): Result<List<AgencyGetResponse>> | ||
suspend fun agencyCodeNumbers(agencyId : Long, data: AgencyJoinRequest) : Result<AgencyJoinResponse> | ||
} |
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
14 changes: 14 additions & 0 deletions
14
...n/src/main/java/com/moneymong/moneymong/domain/usecase/agency/FetchAgencyByNameUseCase.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,14 @@ | ||
package com.moneymong.moneymong.domain.usecase.agency | ||
|
||
import com.moneymong.moneymong.domain.repository.agency.AgencyRepository | ||
import com.moneymong.moneymong.model.agency.AgencyGetResponse | ||
import javax.inject.Inject | ||
|
||
class FetchAgencyByNameUseCase @Inject constructor( | ||
private val agencyRepository: AgencyRepository, | ||
) { | ||
|
||
suspend operator fun invoke(agencyName: String): Result<List<AgencyGetResponse>> { | ||
return agencyRepository.fetchAgencyByName(agencyName = agencyName) | ||
} | ||
} |
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.