diff options
author | Edmund von der Burg <evdb@mysociety.org> | 2011-03-04 11:07:28 +0000 |
---|---|---|
committer | Edmund von der Burg <evdb@mysociety.org> | 2011-03-04 11:07:28 +0000 |
commit | e18bf78e0513d4f1ebf0413d60691525cdcc2f5d (patch) | |
tree | 1fdd80f486b5f731f4de8fc2c647556c536f4a1c /perllib/FixMyStreet/App/Controller | |
parent | 5e2004439616d18bb26a3d1f3d313309c230c0a1 (diff) |
Added 'my' section to the site
Diffstat (limited to 'perllib/FixMyStreet/App/Controller')
-rw-r--r-- | perllib/FixMyStreet/App/Controller/My.pm | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/perllib/FixMyStreet/App/Controller/My.pm b/perllib/FixMyStreet/App/Controller/My.pm new file mode 100644 index 000000000..4c509ec80 --- /dev/null +++ b/perllib/FixMyStreet/App/Controller/My.pm @@ -0,0 +1,31 @@ +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 + +# FIXME - only logged in users should get to here. + +sub my : Path : Args(0) { + my ( $self, $c ) = @_; +} + +__PACKAGE__->meta->make_immutable; + +1; |