-
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 규칙 화면 #80
feature 규칙 화면 #80
Conversation
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.
현재 제가 수연님 그룹멤버로 참여되어있는데 정상적으로 프로필이 생성되지 않아 제대로 보이지 않는 상황이라 오늘 백엔드분들께 말씀드려서 해결해보겠습니다. 규칙 작성 실행해보았는데 잘되는것을 확인하였습니다. 수고하셨습니다!
@@ -20,19 +20,22 @@ interface ApiService { | |||
suspend fun getCompletedHouseWorkNumber(@Query("scheduledDate") scheduledDate: String): CompleteHouseWork | |||
|
|||
@POST("/api/oauth/login") | |||
suspend fun googleLogin(@Header("Authorization")auth : String, @Body socialType : SocialType): LoginResponse | |||
|
|||
suspend fun googlelogin(@Body socialType : SocialType): LoginResponse |
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.
main브런치에서 고쳤던걸 develop브런치에서 수정을 안했었군요,,, 에러가 여태껏 안난게 기적..
} | ||
} | ||
|
||
binding.etRule.setOnKeyListener { v, keyCode, event -> |
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.
focus out 때문에 걱정 많이 했는데 키보드 액션으로 처리하셨군요 최고십니다...!
.runCatching { | ||
collect { | ||
if (it.code == 200) { | ||
getRules() |
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.
나중에 네트워크 처리할 생각으로 저도 onfail까지 작성해두었습니다 네트워크 처리 다 해줘야겠죠...?
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.
일단 runCatching 걸어줘서 괜찮을것 같은데 network Error 처리는 우선순위 낮춰서 가져가도 될것 같아요.
No description provided.