blob: 48d5e47bd46392f1cf6d596e2df93ebc12f34d9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# This Source Code Form is "Incompatible With Secondary Licenses", as
# defined by the Mozilla Public License, v. 2.0.
package Bugzilla::Quantum::Home;
use Mojo::Base 'Mojolicious::Controller';
use Bugzilla::Error;
use Try::Tiny;
use Bugzilla::Constants;
sub index {
my ($c) = @_;
$c->bugzilla->login(LOGIN_REQUIRED) or return;
try {
ThrowUserError('invalid_username', {login => 'batman'})
if $c->param('error');
$c->render(handler => 'bugzilla', template => 'index');
}
catch {
$c->bugzilla->error_page($_);
};
}
1;
|