Skip to content

Commit 77a85b6

Browse files
committed
Add support for getting a custom fields for a given card
1 parent 984e43f commit 77a85b6

File tree

4 files changed

+37
-1
lines changed

4 files changed

+37
-1
lines changed

API-GUIDE.md

+6
Original file line numberDiff line numberDiff line change
@@ -608,6 +608,12 @@ $result = $client->addCardChecklist($cardId, $attributes);
608608
$result = $client->deleteCardChecklist($cardId, $checklistId);
609609
```
610610

611+
#### Get card custom field
612+
613+
```php
614+
$result = $client->getCardCustomField($cardId, $customFieldId);
615+
```
616+
611617
#### Update card custom field
612618

613619
```php

CHANGELOG.md

+18-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,24 @@
1-
#Changelog
1+
# Changelog
22

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

5+
## 0.5.1 - 2018-03-26
6+
7+
### Added
8+
- Added support for getting a custom fields for a given card
9+
10+
### Deprecated
11+
- Nothing
12+
13+
### Fixed
14+
- Nothing
15+
16+
### Removed
17+
- Nothing
18+
19+
### Security
20+
- Nothing
21+
522
## 0.5.0 - 2018-03-23
623

724
### Added

src/Traits/ApiMethodsTrait.php

+1
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ trait ApiMethodsTrait
140140
'addCardLabel' => ['post', 'cards/%s/labels'],
141141
'updateCardLabel' => ['put', 'cards/%s/labels'],
142142
'deleteCardLabel' => ['delete', 'cards/%s/labels/%s'],
143+
'getCardCustomField' => ['get', 'cards/%s/customField/%s'],
143144
'updateCardCustomField' => ['put', 'cards/%s/customField/%s'],
144145
'getCardList' => ['get', 'cards/%s/list'],
145146
'getCardListField' => ['get', 'cards/%s/list/%s'],

tests/ApiTestTrait.php

+12
Original file line numberDiff line numberDiff line change
@@ -1319,6 +1319,18 @@ public function testDeleteCardChecklistCheckItem()
13191319
$this->assertExpectedEqualsResult($payload, $result);
13201320
}
13211321

1322+
public function testGetCardCustomField()
1323+
{
1324+
$cardId = $this->getTestString();
1325+
$customFieldId = $this->getTestString();
1326+
$payload = $this->getSuccessPayload();
1327+
$this->prepareFor("GET", sprintf("/cards/%s/customField/%s", $cardId, $customFieldId), "", $payload);
1328+
1329+
$result = $this->client->getCardCustomField($cardId, $customFieldId);
1330+
1331+
$this->assertExpectedEqualsResult($payload, $result);
1332+
}
1333+
13221334
public function testUpdateCardCustomField()
13231335
{
13241336
$cardId = $this->getTestString();

0 commit comments

Comments
 (0)