mirror of https://github.com/pixelfed/pixelfed
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
302 B
PHTML
14 lines
302 B
PHTML
8 months ago
|
<?php
|
||
|
|
||
|
return [
|
||
|
'enabled' => env('GROUPS_ENABLED', false),
|
||
|
'federation' => env('GROUPS_FEDERATION', true),
|
||
|
|
||
|
'acl' => [
|
||
|
'create_group' => [
|
||
|
'admins' => env('GROUPS_ACL_CREATE_ADMINS', true),
|
||
|
'users' => env('GROUPS_ACL_CREATE_USERS', true),
|
||
|
]
|
||
|
]
|
||
|
];
|