add javadoc to moveCard
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Raffaele Mignone 2019-12-30 14:33:15 +01:00
parent e0d8f87dd6
commit aa30060dc2
Signed by: norangebit
GPG Key ID: F5255658CB220573
1 changed files with 9 additions and 0 deletions

View File

@ -79,6 +79,15 @@ public interface CardService {
Call<Card> putCard(@Path("board") String boardID, @Path("list") String listID,
@Path("card") String cardID, @Body Card card);
/**
* Move a card from a list to an other
*
* @param boardID The id of the Board
* @param oldListID The id of the source list
* @param cardID The id of the card
* @param newListId The id of the destination list
* @return The card with the matching ID
*/
@FormUrlEncoded
@PUT("/api/boards/{board}/lists/{list}/cards/{card}")
Call<Card> moveCard(