blob: 1189fe90144f3727185839577d379426648ea36f (
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
29
30
31
32
33
34
35
36
|
package FixMyStreet::App::Controller::My;
use Moose;
use namespace::autoclean;
BEGIN { extends 'Catalyst::Controller'; }
=head1 NAME
FixMyStreet::App::Controller::My - Catalyst Controller
=head1 DESCRIPTION
Catalyst Controller.
=head1 METHODS
=cut
=head2 index
=cut
sub my : Path : Args(0) {
my ( $self, $c ) = @_;
# FIXME - handle not being logged in more elegantly
unless ( $c->user ) {
$c->res->redirect( $c->uri_for('/auth') );
$c->detach;
}
}
__PACKAGE__->meta->make_immutable;
1;
|