lib/Controller/ConfigController.php 1 location
|
@@ 92-99 (lines=8) @@
|
89 |
|
return $groups; |
90 |
|
} |
91 |
|
|
92 |
|
private function getGroupLimitList() { |
93 |
|
$value = $this->config->getAppValue($this->appName, 'groupLimit', ''); |
94 |
|
$groups = explode(',', $value); |
95 |
|
if ($value === '') { |
96 |
|
return []; |
97 |
|
} |
98 |
|
return $groups; |
99 |
|
} |
100 |
|
|
101 |
|
private function getGroupLimit() { |
102 |
|
$groups = $this->getGroupLimitList(); |
lib/Service/PermissionService.php 1 location
|
@@ 283-290 (lines=8) @@
|
280 |
|
return false; |
281 |
|
} |
282 |
|
|
283 |
|
private function getGroupLimitList() { |
284 |
|
$value = $this->config->getAppValue('deck', 'groupLimit', ''); |
285 |
|
$groups = explode(',', $value); |
286 |
|
if ($value === '') { |
287 |
|
return []; |
288 |
|
} |
289 |
|
return $groups; |
290 |
|
} |
291 |
|
} |
292 |
|
|