Skip to content

Commit

Permalink
[FEATURE]#74 : 차단 목록 Intent 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
jeongjaino committed Aug 3, 2024
1 parent 42b20ce commit 483d422
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@ package com.bff.wespot.entire.screen.state
sealed class EntireAction {
data object OnEntireScreenEntered : EntireAction()
data object OnRevokeScreenEntered : EntireAction()
data object OnBlockListScreenEntered : EntireAction()
data object OnRevokeConfirmed : EntireAction()
data object OnSignOutButtonClicked : EntireAction()
data object OnRevokeButtonClicked : EntireAction()
data class OnRevokeReasonSelected(val reason: String) : EntireAction()
data class UnBlockMessage(val messageId: Int) : EntireAction()
}
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
package com.bff.wespot.entire.screen.state

import com.bff.wespot.model.message.response.Message
import com.bff.wespot.model.user.response.Profile

data class EntireUiState(
val profile: Profile = Profile(),
val revokeReasonList: List<String> = listOf(),
val revokeConfirmed: Boolean = false,
val blockList: List<Message> = listOf(),
val unBlockList: List<Int> = listOf(),
)

0 comments on commit 483d422

Please sign in to comment.