mirror of
https://github.com/koel/koel
synced 2024-12-04 17:59:20 +00:00
30 lines
721 B
PHP
30 lines
721 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Http\Controllers\API;
|
||
|
|
||
|
use App\Facades\Media;
|
||
|
use App\Http\Requests\API\SettingRequest;
|
||
|
use App\Models\Setting;
|
||
|
|
||
|
class SettingController extends Controller
|
||
|
{
|
||
|
/**
|
||
|
* Save the application settings.
|
||
|
*
|
||
|
* @param SettingRequest $request
|
||
|
*
|
||
|
* @return \Illuminate\Http\JsonResponse
|
||
|
*/
|
||
|
public function save(SettingRequest $request)
|
||
|
{
|
||
|
// For right now there's only one setting to be saved
|
||
|
Setting::set('media_path', rtrim(trim($request->input('media_path')), '/'));
|
||
|
|
||
|
// In a next version we should opt for a "MediaPathChanged" event,
|
||
|
// but let's just do this async now.
|
||
|
Media::sync();
|
||
|
|
||
|
return response()->json();
|
||
|
}
|
||
|
}
|