From df00fc4c827311b0849b243dbb2d650a2c1957cd Mon Sep 17 00:00:00 2001 From: dklawren Date: Wed, 3 Oct 2018 11:23:00 -0400 Subject: Bug 1495906 - After mojo update /latest/configuration API call no longer works and gives page not found --- Bugzilla/Quantum.pm | 1 + 1 file changed, 1 insertion(+) 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__'); -- cgit v1.2.3-24-g4f1b