diff options
author | Knut Ahlers <knut@ahlers.me> | 2017-06-30 13:32:11 +0200 |
---|---|---|
committer | Knut Ahlers <knut@ahlers.me> | 2017-06-30 14:28:16 +0200 |
commit | 92d2fb8771bbdeddda0f9593bf36b854729bbb40 (patch) | |
tree | e3ac4368836f3fee1d5d9656905f775b23536e3e /lib/public | |
parent | 2afb4857cca4ca5eb48af63ab814727cfe77b1bd (diff) | |
download | nextcloud-server-92d2fb8771bbdeddda0f9593bf36b854729bbb40.tar.gz nextcloud-server-92d2fb8771bbdeddda0f9593bf36b854729bbb40.zip |
Allow group backend to declare users as admins
Signed-off-by: Knut Ahlers <knut@ahlers.me>
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/GroupInterface.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/public/GroupInterface.php b/lib/public/GroupInterface.php index 97837e50b16..a9b1fd1724d 100644 --- a/lib/public/GroupInterface.php +++ b/lib/public/GroupInterface.php @@ -51,6 +51,7 @@ interface GroupInterface { //OBSOLETE const GET_DISPLAYNAME = 0x00010000; const COUNT_USERS = 0x00100000; const GROUP_DETAILS = 0x01000000; + const IS_ADMIN = 0x10000000; /** * Check if backend implements actions |