diff options
author | Edmund von der Burg <evdb@mysociety.org> | 2011-02-23 22:22:37 +0000 |
---|---|---|
committer | Edmund von der Burg <evdb@mysociety.org> | 2011-02-23 22:22:37 +0000 |
commit | 5cf138c1ace35dbc9cbce1279e1ddcb8a55fe513 (patch) | |
tree | 68481e83b6496392077403ccf6937e2d4fffe0fa /perllib/FixMyStreet/App/Controller/Root.pm | |
parent | 49e2dec7a498e4375d2619befd6fa57aefa32f48 (diff) |
do the index page the proper way
Diffstat (limited to 'perllib/FixMyStreet/App/Controller/Root.pm')
-rw-r--r-- | perllib/FixMyStreet/App/Controller/Root.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/App/Controller/Root.pm b/perllib/FixMyStreet/App/Controller/Root.pm index 4b65dc4f7..42ac856c6 100644 --- a/perllib/FixMyStreet/App/Controller/Root.pm +++ b/perllib/FixMyStreet/App/Controller/Root.pm @@ -35,7 +35,7 @@ sub auto : Private { =cut -sub index : Private { +sub index : Path : Args(0) { my ( $self, $c ) = @_; $c->res->body('index'); } |