-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feature 팀 정보 조회 API 이용하여 team 이름, profilePath 이용 되도록 수정 #78
Conversation
onemask
commented
Jun 20, 2022
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
수고하셨습니다 저도 얼른 멤버업데이트까지 api 붙여서 mainFragment까지 문제없이 갈수있도록 작업해두겠습니다~~!!
@@ -117,7 +117,7 @@ class MainFragment : Fragment() { | |||
}) | |||
binding.rvWeek.adapter = dayOfAdapter | |||
|
|||
val list = mainViewModel.houseWorks.value?.houseWorks?.toMutableList() ?: mutableListOf() | |||
val list = mainViewModel.myHouseWorks.value?.houseWorks?.toMutableList() ?: mutableListOf() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
이제 다른 멤버의 집안일도 들어오니까 리네임하셨나보군요 센스쟁이..
@@ -36,6 +37,9 @@ class GroupProfileAdapter( | |||
RecyclerView.ViewHolder(binding.root) { | |||
fun bind(assign: Assignee) { | |||
binding.assignTemp = assign | |||
Glide.with(binding.root) | |||
.load(assign.profilePath) | |||
.into(binding.ivIcon) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
작업해주셔서 감사합니다 ^^7 피곤하실텐데 수고하셨습니다!
저도 이제 유저 정보 기입받는 것 전체적으로 마무리하고 메인화면으로 잘 연결될 수 있게끔 해보겠습니다. |