Skip to content

Commit

Permalink
Exposed holdOnSelectForGAs on retrieve account call
Browse files Browse the repository at this point in the history
  • Loading branch information
mroloux committed Nov 22, 2018
1 parent d44ccc8 commit 727d98c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Accounts/AccountSettings.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ class AccountSettings
*/
public $draftChartDrawingsEnabled;

/**
* @var boolean
*/
public $holdOnSelectForGAs;

/**
* @var ChartValidationSettings
*/
Expand Down
1 change: 1 addition & 0 deletions tests/Accounts/RetrieveMyAccountTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ public function test()
self::assertNotEmpty($account->publicKey);
self::assertNotEmpty($account->email);
self::assertTrue($account->settings->draftChartDrawingsEnabled);
self::assertTrue($account->settings->holdOnSelectForGAs);
self::assertEquals("ERROR", $account->settings->chartValidation->VALIDATE_DUPLICATE_LABELS);
self::assertEquals("ERROR", $account->settings->chartValidation->VALIDATE_OBJECTS_WITHOUT_CATEGORIES);
self::assertEquals("ERROR", $account->settings->chartValidation->VALIDATE_UNLABELED_OBJECTS);
Expand Down

0 comments on commit 727d98c

Please sign in to comment.