1
0
Fork 0

Update instance config, cleanup and add restricted mode

This commit is contained in:
Daniel Supernault 2020-01-27 20:55:11 -07:00
parent bf1c622c7c
commit 3be32597d3
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 6 additions and 5 deletions

View File

@ -3,10 +3,6 @@
return [
'description' => env('INSTANCE_DESCRIPTION', null),
'announcement' => [
'enabled' => env('INSTANCE_ANNOUNCEMENT_ENABLED', false),
'message' => env('INSTANCE_ANNOUNCEMENT_MESSAGE', 'Example announcement message.<br><span class="font-weight-normal">Something else here</span>')
],
'contact' => [
'enabled' => env('INSTANCE_CONTACT_FORM', false),
@ -15,7 +11,7 @@ return [
'discover' => [
'loops' => [
'enabled' => false
'enabled' => env('EXP_LOOPS', false),
],
'tags' => [
'is_public' => env('INSTANCE_PUBLIC_HASHTAGS', false)
@ -51,5 +47,10 @@ return [
'stories' => [
'enabled' => env('STORIES_ENABLED', false),
],
'restricted' => [
'enabled' => env('RESTRICTED_INSTANCE', false),
'level' => 1
]
];