release 0.1 #30
@ -71,4 +71,13 @@ public interface CardService {
|
||||
@PUT("/api/boards/{board}/lists/{list}/cards/{card}")
|
||||
Call<Card> putCard(@Path("board") String boardID, @Path("list") String listID,
|
||||
@Path("card") String cardID, @Body Card card);
|
||||
|
||||
@FormUrlEncoded
|
||||
@PUT("/api/boards/{board}/lists/{list}/cards/{card}")
|
||||
Call<Card> moveCard(
|
||||
@Path("board") String boardID,
|
||||
@Path("list") String oldListID,
|
||||
@Path("card") String cardID,
|
||||
@Field("listId") String newListId
|
||||
);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user