Allow property filters to be null
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
parent
86f29ffdbc
commit
f47f5ad0ea
|
@ -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
|
* @param string $verified \OCP\Accounts\IAccountManager::NOT_VERIFIED | \OCP\Accounts\IAccountManager::VERIFICATION_IN_PROGRESS | \OCP\Accounts\IAccountManager::VERIFIED
|
||||||
* @return IAccountProperty[]
|
* @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
|
* Get the related user for the account data
|
||||||
|
|
Loading…
Reference in New Issue