Auto commit for release 'develop' on 2024-04-26

This commit is contained in:
github-actions
2024-04-26 06:18:27 +02:00
parent 021ddfc36b
commit 56c9026299
5 changed files with 198 additions and 11 deletions

View File

@@ -818,7 +818,7 @@ Route::group(
static function (): void {
Route::get('', ['uses' => 'PreferencesController@index', 'as' => 'index']);
Route::post('', ['uses' => 'PreferencesController@store', 'as' => 'store']);
//Route::get('{preferenceList}', ['uses' => 'PreferencesController@showList', 'as' => 'show-list'])->where('preferenceList', ',+');
// Route::get('{preferenceList}', ['uses' => 'PreferencesController@showList', 'as' => 'show-list'])->where('preferenceList', ',+');
Route::get('{preference}', ['uses' => 'PreferencesController@show', 'as' => 'show']);
Route::put('{preference}', ['uses' => 'PreferencesController@update', 'as' => 'update']);
}