mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
Update APIV1Controller, add ``mobile_apis
`` to /api/v1/instance endpoint
This commit is contained in:
parent
d11e82c3d9
commit
5740746339
1 changed files with 3 additions and 1 deletions
|
@ -906,7 +906,9 @@ class ApiV1Controller extends Controller
|
||||||
'max_avatar_size' => config('pixelfed.max_avatar_size'),
|
'max_avatar_size' => config('pixelfed.max_avatar_size'),
|
||||||
'max_caption_length' => config('pixelfed.max_caption_length'),
|
'max_caption_length' => config('pixelfed.max_caption_length'),
|
||||||
'max_bio_length' => config('pixelfed.max_bio_length'),
|
'max_bio_length' => config('pixelfed.max_bio_length'),
|
||||||
'max_album_length' => config('pixelfed.max_album_length')
|
'max_album_length' => config('pixelfed.max_album_length'),
|
||||||
|
'mobile_apis' => config('pixelfed.oauth_enabled')
|
||||||
|
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
return response()->json($res, 200, [], JSON_PRETTY_PRINT);
|
return response()->json($res, 200, [], JSON_PRETTY_PRINT);
|
||||||
|
|
Loading…
Reference in a new issue