라이브 메인 - 팔로잉 채널 API 연동

This commit is contained in:
klaus 2023-08-09 07:27:38 +09:00
parent 1b53aec571
commit f455aa81a2
2 changed files with 3 additions and 3 deletions

View File

@ -18,7 +18,7 @@ interface LiveRecommendApi {
@Header("Authorization") authHeader: String @Header("Authorization") authHeader: String
): Flowable<ApiResponse<List<GetRecommendChannelResponse>>> ): Flowable<ApiResponse<List<GetRecommendChannelResponse>>>
@GET("/live/following/channel") @GET("/live/recommend/following/channel/list")
fun getFollowingChannelList( fun getFollowingChannelList(
@Header("Authorization") authHeader: String @Header("Authorization") authHeader: String
): Single<ApiResponse<List<GetRecommendChannelResponse>>> ): Single<ApiResponse<List<GetRecommendChannelResponse>>>

View File

@ -74,13 +74,13 @@ interface UserApi {
@POST("/member/creator/follow") @POST("/member/creator/follow")
fun creatorFollow( fun creatorFollow(
request: CreatorFollowRequestRequest, @Body request: CreatorFollowRequestRequest,
@Header("Authorization") authHeader: String @Header("Authorization") authHeader: String
): Single<ApiResponse<Any>> ): Single<ApiResponse<Any>>
@POST("/member/creator/unfollow") @POST("/member/creator/unfollow")
fun creatorUnFollow( fun creatorUnFollow(
request: CreatorFollowRequestRequest, @Body request: CreatorFollowRequestRequest,
@Header("Authorization") authHeader: String @Header("Authorization") authHeader: String
): Single<ApiResponse<Any>> ): Single<ApiResponse<Any>>