From 215f1021948b63cad29094e7847b52c256ec9974 Mon Sep 17 00:00:00 2001 From: Dylan William Hardison Date: Sun, 8 Apr 2018 10:11:55 -0400 Subject: more cgi --- Bugzilla/Quantum.pm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'Bugzilla/Quantum.pm') diff --git a/Bugzilla/Quantum.pm b/Bugzilla/Quantum.pm index b5ed66760..20050131f 100644 --- a/Bugzilla/Quantum.pm +++ b/Bugzilla/Quantum.pm @@ -11,11 +11,35 @@ use Mojo::Base 'Mojolicious'; use Bugzilla::Quantum::CGI; use Bugzilla::Quantum::Template; use Bugzilla::Quantum::Legacy; +use Bugzilla::PSGI qw(compile_cgi); + +use Bugzilla (); +use Bugzilla::Constants (); +use Bugzilla::BugMail (); +use Bugzilla::CGI (); +use Bugzilla::Extension (); +use Bugzilla::Install::Requirements (); +use Bugzilla::Util (); +use Bugzilla::RNG (); sub startup { my ($self) = @_; + Bugzilla::Extension->load_all(); + Bugzilla->preload_features(); + Bugzilla->template; + $self->plugin('Bugzilla::Quantum::Plugin::Glue'); + + $self->plugin( + 'MountPSGI' => { + rewrite => 1, + '/rest' => $rest, + '/rest.cgi' => $rest, + '/jsonrpc.cgi' => compile_cgi('jsonrpc.cgi'), + '/xmlrpc.cgi' => compile_cgi('xmlrpc.cgi'), + } + ); my $r = $self->routes; $r->any( '/' )->to('legacy#index_cgi'); -- cgit v1.2.3-24-g4f1b