X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;ds=sidebyside;f=routes%2Fapi.php;h=d9f44ad4c1db850919998d7ae83f5f7dd2a9cddf;hb=4f4b2fd64141cbbff953881e2705602a00b85df5;hp=7ae308e223cdc6618f6f7cbd2fc6d6706386f1c7;hpb=68aabaf6da8ed6e675bdea728702d5bd75066964;p=alttp.git diff --git a/routes/api.php b/routes/api.php index 7ae308e..d9f44ad 100644 --- a/routes/api.php +++ b/routes/api.php @@ -38,6 +38,7 @@ Route::get('protocol/{tournament}', 'App\Http\Controllers\ProtocolController@for Route::post('results', 'App\Http\Controllers\ResultController@create'); Route::post('rounds', 'App\Http\Controllers\RoundController@create'); +Route::put('rounds/{round}', 'App\Http\Controllers\RoundController@update'); Route::post('rounds/{round}/lock', 'App\Http\Controllers\RoundController@lock'); Route::post('rounds/{round}/setSeed', 'App\Http\Controllers\RoundController@setSeed'); Route::post('rounds/{round}/unlock', 'App\Http\Controllers\RoundController@unlock');