diff options
author | Chris Mytton <self@hecticjeff.net> | 2013-09-25 11:50:26 +0100 |
---|---|---|
committer | Chris Mytton <self@hecticjeff.net> | 2013-09-25 11:50:26 +0100 |
commit | 0efb806e7dbfc6681230041751ed49552ec3ba5b (patch) | |
tree | 9bf58000568f1376b309e9aade9c0fc601637750 /perllib/FixMyStreet/App/Controller/Admin.pm | |
parent | 8e5005fd26b4396443f0aac1d7bb8f05f8357bd6 (diff) | |
parent | f26fe9ff49a22eb532d4dea94158952d0bc01022 (diff) |
Merge branch 'master' into oxfordshire-usability-recommendations
Diffstat (limited to 'perllib/FixMyStreet/App/Controller/Admin.pm')
-rw-r--r-- | perllib/FixMyStreet/App/Controller/Admin.pm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/perllib/FixMyStreet/App/Controller/Admin.pm b/perllib/FixMyStreet/App/Controller/Admin.pm index 4973b7c4e..424f68ba3 100644 --- a/perllib/FixMyStreet/App/Controller/Admin.pm +++ b/perllib/FixMyStreet/App/Controller/Admin.pm @@ -135,6 +135,9 @@ sub index : Path : Args(0) { return 1; } +sub config_page : Path( 'config' ) : Args(0) { +} + sub timeline : Path( 'timeline' ) : Args(0) { my ($self, $c) = @_; @@ -1164,6 +1167,7 @@ sub set_allowed_pages : Private { 'users' => [_('Users'), 5], 'flagged' => [_('Flagged'), 6], 'stats' => [_('Stats'), 6], + 'config' => [ undef, undef ], 'user_edit' => [undef, undef], 'body' => [undef, undef], 'body_edit' => [undef, undef], |