diff options
author | msquare <msquare@notrademark.de> | 2017-12-20 00:42:58 +0100 |
---|---|---|
committer | msquare <msquare@notrademark.de> | 2017-12-20 00:42:58 +0100 |
commit | 1289101f6e4b729018dba64e92b4c9397db67f2d (patch) | |
tree | 9b63d1174807af762050275062a20dbaf7d761d7 /public | |
parent | afd7c59d1d1e07c61099e3cf6a4c66af883c3302 (diff) |
rewrite controller for creating shift entries
Diffstat (limited to 'public')
-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 e4454e48..af7318b1 100644 --- a/public/index.php +++ b/public/index.php @@ -14,6 +14,7 @@ $free_pages = [ 'login', 'public_dashboard', 'rooms', + 'shift_entries', 'shifts', 'shifts_json_export', 'shifts_json_export_all', @@ -84,6 +85,9 @@ if ( case 'angeltypes': list($title, $content) = angeltypes_controller(); break; + case 'shift_entries': + list($title, $content) = shift_entries_controller(); + break; case 'shifts': list($title, $content) = shifts_controller(); break; |