1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2024-12-22 15:55:14 +00:00
pixelfed/config/groups.php

14 lines
302 B
PHP
Raw Normal View History

<?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),
]
]
];