Browse Source
Allow property filters to be null
Signed-off-by: Julius Härtl <jus@bitgrid.net>
pull/12013/head
Julius Härtl
8 years ago
No known key found for this signature in database
GPG Key ID: 4C614C6ED2CDE6DF
1 changed files with
1 additions and
1 deletions
-
lib/public/Accounts/IAccount.php
|
|
|
@ -78,7 +78,7 @@ interface IAccount extends \JsonSerializable { |
|
|
|
* @param string $verified \OCP\Accounts\IAccountManager::NOT_VERIFIED | \OCP\Accounts\IAccountManager::VERIFICATION_IN_PROGRESS | \OCP\Accounts\IAccountManager::VERIFIED |
|
|
|
* @return IAccountProperty[] |
|
|
|
*/ |
|
|
|
public function getFilteredProperties(string $scope, string $verified): array; |
|
|
|
public function getFilteredProperties(string $scope = null, string $verified = null): array; |
|
|
|
|
|
|
|
/** |
|
|
|
* Get the related user for the account data |
|
|
|
|