Skip to content

Commit 9938003

Browse files
committed
Update path mapping for updateCardCustomField method
1 parent 77a85b6 commit 9938003

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@
22

33
All Notable changes to `trello-php` will be documented in this file
44

5+
## 0.5.2 - 2018-03-26
6+
7+
### Added
8+
- Nothing
9+
10+
### Deprecated
11+
- Nothing
12+
13+
### Fixed
14+
- Fixed path mapping for updateCardCustomField method
15+
16+
### Removed
17+
- Nothing
18+
19+
### Security
20+
- Nothing
21+
522
## 0.5.1 - 2018-03-26
623

724
### Added

src/Traits/ApiMethodsTrait.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ trait ApiMethodsTrait
141141
'updateCardLabel' => ['put', 'cards/%s/labels'],
142142
'deleteCardLabel' => ['delete', 'cards/%s/labels/%s'],
143143
'getCardCustomField' => ['get', 'cards/%s/customField/%s'],
144-
'updateCardCustomField' => ['put', 'cards/%s/customField/%s'],
144+
'updateCardCustomField' => ['put', 'cards/%s/customField/%s/item'],
145145
'getCardList' => ['get', 'cards/%s/list'],
146146
'getCardListField' => ['get', 'cards/%s/list/%s'],
147147
'addCardMarkAssociatedNotificationsRead' => ['post', 'cards/%s/markAssociatedNotificationsRead'],

tests/ApiTestTrait.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1337,7 +1337,7 @@ public function testUpdateCardCustomField()
13371337
$customFieldId = $this->getTestString();
13381338
$attributes = $this->getTestAttributes();
13391339
$payload = $this->getSuccessPayload();
1340-
$this->prepareFor("PUT", sprintf("/cards/%s/customField/%s", $cardId, $customFieldId), "", $payload);
1340+
$this->prepareFor("PUT", sprintf("/cards/%s/customField/%s/item", $cardId, $customFieldId), "", $payload);
13411341

13421342
$result = $this->client->updateCardCustomField($cardId, $customFieldId, $attributes);
13431343

0 commit comments

Comments
 (0)