Merge branch 'hotfix_move_card' of kanban/wedroid into develop
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
commit
b49947a916
@ -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