Skip to content

Commit bb1df5f

Browse files
authored
Bugfix reroute for the build configure page (#2016)
This change fixes to a typo in the pluralization rerouting logic (introduced in #1900) that broke all existing references to the url: `build/<buildid>/configure`.
1 parent ed10e56 commit bb1df5f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

routes/web.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
});
7575

7676
Route::get('/builds/{id}/configure', 'BuildController@configure');
77-
Route::permanentRedirect('/builds/{id}/configure', '/builds/{id}/configure');
77+
Route::permanentRedirect('/build/{id}/configure', '/builds/{id}/configure');
7878
Route::get('/viewConfigure.php', function (Request $request) {
7979
$buildid = $request->query('buildid');
8080
return redirect("/builds/{$buildid}/configure", 301);

0 commit comments

Comments
 (0)