X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=routes%2Fapi.php;h=ca02e369cc8652608556a9e6ca16a7db728d8cad;hb=d518ede5ffe8d4e44b0194279a9f32839bc1f903;hp=2b8b6827113cf3fa5d0ffec411d35916d4f37475;hpb=42dd30f6930e20530c6c9e4efecd0b088098ce9d;p=alttp.git diff --git a/routes/api.php b/routes/api.php index 2b8b682..ca02e36 100644 --- a/routes/api.php +++ b/routes/api.php @@ -70,6 +70,7 @@ Route::get('tech', 'App\Http\Controllers\TechniqueController@search'); Route::get('tech/{tech:name}', 'App\Http\Controllers\TechniqueController@single'); Route::get('tournaments/{id}', 'App\Http\Controllers\TournamentController@single'); +Route::get('tournaments/{tournament}/more-rounds', 'App\Http\Controllers\TournamentController@moreRounds'); Route::post('tournaments/{tournament}/apply', 'App\Http\Controllers\TournamentController@apply'); Route::post('tournaments/{tournament}/close', 'App\Http\Controllers\TournamentController@close'); Route::post('tournaments/{tournament}/discord', 'App\Http\Controllers\TournamentController@discord');