summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Quantum.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/Quantum.pm')
-rw-r--r--Bugzilla/Quantum.pm7
1 files changed, 3 insertions, 4 deletions
diff --git a/Bugzilla/Quantum.pm b/Bugzilla/Quantum.pm
index 4fddb8da9..1638f8c9a 100644
--- a/Bugzilla/Quantum.pm
+++ b/Bugzilla/Quantum.pm
@@ -96,8 +96,7 @@ sub setup_routes {
my $r = $self->routes;
Bugzilla::Quantum::CGI->load_all($r);
- Bugzilla::Quantum::CGI->load_one('bzapi_cgi',
- 'extensions/BzAPI/bin/rest.cgi');
+ Bugzilla::Quantum::CGI->load_one('bzapi_cgi', 'extensions/BzAPI/bin/rest.cgi');
$r->get('/home')->to('Home#index');
$r->any('/')->to('CGI#index_cgi');
@@ -118,8 +117,8 @@ sub setup_routes {
$r->any('/bzapi/*PATH_INFO')->to('CGI#bzapi_cgi');
$r->static_file('/__lbheartbeat__');
- $r->static_file('/__version__' =>
- {file => 'version.json', content_type => 'application/json'});
+ $r->static_file(
+ '/__version__' => {file => 'version.json', content_type => 'application/json'});
$r->static_file('/version.json', {content_type => 'application/json'});
$r->page('/review', 'splinter.html');