Skip to content

Commit

Permalink
[IDLE-000] 개발, 운영 서버 호스트 변경 및 케어밋 2차전 시작...
Browse files Browse the repository at this point in the history
  • Loading branch information
tgyuuAn committed Jan 20, 2025
1 parent d3dc5c9 commit 15110e0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ android {
namespace = "com.idle.care"

defaultConfig {
versionCode = 19
versionName = "1.2.4"
versionCode = 20
versionName = "1.2.5"
targetSdk = 34

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import com.idle.domain.usecase.profile.GetMyCenterProfileUseCase
import com.idle.navigation.DeepLinkDestination.CenterHome
import com.idle.navigation.DeepLinkDestination.CenterRegister
import com.idle.navigation.NavigationEvent
import com.idle.navigation.NavigationHelper
import dagger.hilt.android.lifecycle.HiltViewModel
import kotlinx.coroutines.delay
import kotlinx.coroutines.flow.MutableStateFlow
Expand All @@ -33,7 +34,7 @@ class CenterPendingViewModel @Inject constructor(
private val getMyCenterProfileUseCase: GetMyCenterProfileUseCase,
private val errorHelper: ErrorHelper,
private val eventHelper: EventHelper,
private val navigationHelper: com.idle.navigation.NavigationHelper,
private val navigationHelper: NavigationHelper,
) : ViewModel() {
private val _status = MutableStateFlow(CenterManagerAccountStatus.UNKNOWN)
val status = _status.asStateFlow()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import com.idle.domain.usecase.notification.GetUnreadNotificationCountUseCase
import com.idle.domain.usecase.profile.GetLocalMyWorkerProfileUseCase
import com.idle.navigation.DeepLinkDestination
import com.idle.navigation.NavigationEvent
import com.idle.navigation.NavigationHelper
import dagger.hilt.android.lifecycle.HiltViewModel
import kotlinx.coroutines.flow.MutableStateFlow
import kotlinx.coroutines.flow.asStateFlow
Expand All @@ -43,7 +44,7 @@ class WorkerHomeViewModel @Inject constructor(
private val jobPostingRepository: JobPostingRepository,
private val errorHelper: ErrorHelper,
private val eventHelper: EventHelper,
val navigationHelper: com.idle.navigation.NavigationHelper,
val navigationHelper: NavigationHelper,
) : ViewModel() {
private val _profile = MutableStateFlow<WorkerProfile?>(null)
val profile = _profile.asStateFlow()
Expand Down

0 comments on commit 15110e0

Please sign in to comment.