Update instance endpoint, add custom description

This commit is contained in:
Daniel Supernault 2021-04-28 19:26:12 -06:00
parent c8edca696b
commit 668e936eb5
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
2 changed files with 4 additions and 4 deletions

View File

@ -960,7 +960,7 @@ class ApiV1Controller extends Controller
$res = [ $res = [
'approval_required' => false, 'approval_required' => false,
'contact_account' => null, 'contact_account' => null,
'description' => 'Pixelfed - Photo sharing for everyone', 'description' => config('instance.description'),
'email' => config('instance.email'), 'email' => config('instance.email'),
'invites_enabled' => false, 'invites_enabled' => false,
'rules' => [], 'rules' => [],

View File

@ -2,7 +2,7 @@
return [ return [
'description' => env('INSTANCE_DESCRIPTION', null), 'description' => env('INSTANCE_DESCRIPTION', 'Pixelfed - Photo sharing for everyone'),
'contact' => [ 'contact' => [
'enabled' => env('INSTANCE_CONTACT_FORM', false), 'enabled' => env('INSTANCE_CONTACT_FORM', false),