We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbf1a42 commit 33718a2Copy full SHA for 33718a2
src/GroupManage.php
@@ -85,7 +85,6 @@ private function expandHomeDirectory($path)
85
return str_replace('~', realpath($homeDirectory), $path);
86
}
87
88
-
89
public function addToGroup($email, $role, $group)
90
{
91
@@ -122,11 +121,9 @@ public function inGroup($email, $group)
122
121
return false;
123
124
125
- public function listGroup($group)
+ public function listGroup($group, $count = 200)
126
127
- return $this->service->members->listMembers($group)['members'];
+ $parameters = array('maxResults' => $count);
+ return $this->service->members->listMembers($group, $parameters)['members'];
128
129
-}
130
131
132
-?>
+}
0 commit comments