1
0
Fork 0

Update Config util

This commit is contained in:
Daniel Supernault 2020-02-18 00:41:08 -07:00
parent 4c332ce700
commit 765b6187a9
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 2 additions and 0 deletions

View File

@ -10,6 +10,7 @@ class Config {
public static function get() {
return Cache::remember('api:site:configuration', now()->addMinutes(30), function() {
return [
'open_registration' => config('pixelfed.open_registration'),
'uploader' => [
'max_photo_size' => config('pixelfed.max_photo_size'),
'max_caption_length' => config('pixelfed.max_caption_length'),
@ -35,6 +36,7 @@ class Config {
],
'site' => [
'name' => config('app.name', 'pixelfed'),
'domain' => config('pixelfed.domain.app'),
'url' => config('app.url'),
'description' => config('instance.description')