Skip to content

Commit

Permalink
[feat/#135] GroupService postRegisterReview
Browse files Browse the repository at this point in the history
  • Loading branch information
kkk5474096 committed Feb 13, 2024
1 parent 42fd827 commit 46280ff
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.teumteum.data.service

import com.teumteum.data.model.request.RequestReviewFriend
import com.teumteum.data.model.response.ResponseGroup
import com.teumteum.data.model.response.ResponseMeeting
import com.teumteum.data.model.response.ResponseReviewFriends
Expand Down Expand Up @@ -75,4 +76,10 @@ interface GroupService {
suspend fun getReviewFriendList(
@Path("meetingId") meetingId: Long
): ResponseReviewFriends

@POST("users/reviews")
suspend fun postRegisterReview(
@Query("meetingId") meetingsId: Long,
@Body request: List<RequestReviewFriend>
):Response<Void>
}

0 comments on commit 46280ff

Please sign in to comment.