diff options
-rw-r--r-- | perllib/FixMyStreet/App/Controller/Root.pm | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/perllib/FixMyStreet/App/Controller/Root.pm b/perllib/FixMyStreet/App/Controller/Root.pm index debddef38..4b65dc4f7 100644 --- a/perllib/FixMyStreet/App/Controller/Root.pm +++ b/perllib/FixMyStreet/App/Controller/Root.pm @@ -31,6 +31,15 @@ sub auto : Private { return 1; } +=head2 index + +=cut + +sub index : Private { + my ( $self, $c ) = @_; + $c->res->body('index'); +} + =head2 default Forward to the standard 404 error page |