Add ability to update an Egg by re-uploading a file.
This commit is contained in:
parent
e2cb789b2b
commit
e01d7497f5
17 changed files with 449 additions and 23 deletions
|
@ -163,6 +163,8 @@ Route::group(['prefix' => 'nests'], function () {
|
|||
Route::post('/egg/new', 'Nests\EggController@store');
|
||||
Route::post('/egg/{egg}/variables', 'Nests\EggVariableController@store');
|
||||
|
||||
Route::put('/egg/{egg}', 'Nests\EggShareController@update');
|
||||
|
||||
Route::patch('/view/{nest}', 'Nests\NestController@update');
|
||||
Route::patch('/egg/{egg}', 'Nests\EggController@update');
|
||||
Route::patch('/egg/{egg}/scripts', 'Nests\EggScriptController@update');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue