diff options
author | msquare <msquare@notrademark.de> | 2017-12-11 22:26:36 +0100 |
---|---|---|
committer | msquare <msquare@notrademark.de> | 2017-12-11 22:26:36 +0100 |
commit | 74f3677f19b70bbe6655f2d9d9a42792b22120de (patch) | |
tree | 7ec4fc344348f528934442a05cff63386afb1da7 /public/index.php | |
parent | afb77d22ba35dfbee74bbbee95626d55edef8898 (diff) |
add quick+dirty public dashboard
Diffstat (limited to 'public/index.php')
-rw-r--r-- | public/index.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/public/index.php b/public/index.php index 69d92127..e4454e48 100644 --- a/public/index.php +++ b/public/index.php @@ -12,6 +12,7 @@ $free_pages = [ 'credits', 'ical', 'login', + 'public_dashboard', 'rooms', 'shifts', 'shifts_json_export', @@ -77,6 +78,9 @@ if ( $title = user_password_recovery_title(); $content = user_password_recovery_controller(); break; + case 'public_dashboard': + list($title, $content) = public_dashboard_controller(); + break; case 'angeltypes': list($title, $content) = angeltypes_controller(); break; |