mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-25 15:55:22 +00:00
Add some elements in api/v1/instance
This commit is contained in:
parent
d3a4981319
commit
2a849be650
1 changed files with 8 additions and 1 deletions
|
@ -900,7 +900,14 @@ class ApiV1Controller extends Controller
|
||||||
'title' => 'Pixelfed (' . config('pixelfed.domain.app') . ')',
|
'title' => 'Pixelfed (' . config('pixelfed.domain.app') . ')',
|
||||||
'uri' => config('app.url'),
|
'uri' => config('app.url'),
|
||||||
'urls' => [],
|
'urls' => [],
|
||||||
'version' => '2.7.2 (compatible; Pixelfed ' . config('pixelfed.version') . ')'
|
'version' => '2.7.2 (compatible; Pixelfed ' . config('pixelfed.version') . ')',
|
||||||
|
'environment' => [
|
||||||
|
'max_photo_size' => config('pixelfed.max_photo_size'),
|
||||||
|
'max_avatar_size' => config('pixelfed.max_avatar_size'),
|
||||||
|
'max_caption_length' => config('pixelfed.max_caption_length'),
|
||||||
|
'max_bio_length' => config('pixelfed.max_bio_length'),
|
||||||
|
'max_album_length' => config('pixelfed.max_album_length')
|
||||||
|
]
|
||||||
];
|
];
|
||||||
return response()->json($res, 200, [], JSON_PRETTY_PRINT);
|
return response()->json($res, 200, [], JSON_PRETTY_PRINT);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue