mirror of
https://github.com/koel/koel
synced 2024-12-01 08:19:18 +00:00
29 lines
722 B
PHP
29 lines
722 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 store(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();
|
|
}
|
|
}
|