Skip to content

Commit 03e8dbf

Browse files
author
John Mathis
committed
Change method to Post
1 parent 61b5428 commit 03e8dbf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

LeanKit.API.Client.Library/LeanKitClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ public CardsDeleteResult DeleteCards(long boardId, IEnumerable<long> cardIds)
257257
public CardDelegationResult DelegateCard(long cardId, long delegationBoardId)
258258
{
259259
var resource = "Kanban/API/Card/Delegate/" + cardId + "/" + delegationBoardId;
260-
return _restCommandProcessor.Get<CardDelegationResult>(_accountAuth, resource);
260+
return _restCommandProcessor.Post<CardDelegationResult>(_accountAuth, resource);
261261
}
262262

263263
public BoardUpdates CheckForUpdates(long boardId, int version)

0 commit comments

Comments
 (0)