From: dklawren Date: Wed, 3 Oct 2018 15:23:00 +0000 (-0400) Subject: Bug 1495906 - After mojo update /latest/configuration API call no longer works and... X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=df00fc4c827311b0849b243dbb2d650a2c1957cd;p=thirdparty%2Fbugzilla.git Bug 1495906 - After mojo update /latest/configuration API call no longer works and gives page not found --- diff --git a/Bugzilla/Quantum.pm b/Bugzilla/Quantum.pm index f454a78c5..014663bd0 100644 --- a/Bugzilla/Quantum.pm +++ b/Bugzilla/Quantum.pm @@ -112,6 +112,7 @@ sub setup_routes { $r->any('/rest.cgi/*PATH_INFO')->to( 'CGI#rest_cgi' => { PATH_INFO => '' } ); $r->any('/rest/*PATH_INFO')->to( 'CGI#rest_cgi' => { PATH_INFO => '' } ); $r->any('/extensions/BzAPI/bin/rest.cgi/*PATH_INFO')->to('CGI#bzapi_cgi'); + $r->any('/latest/*PATH_INFO')->to('CGI#bzapi_cgi'); $r->any('/bzapi/*PATH_INFO')->to('CGI#bzapi_cgi'); $r->static_file('/__lbheartbeat__');