From 1289101f6e4b729018dba64e92b4c9397db67f2d Mon Sep 17 00:00:00 2001 From: msquare Date: Wed, 20 Dec 2017 00:42:58 +0100 Subject: rewrite controller for creating shift entries --- public/index.php | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'public') 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; -- cgit v1.2.3-54-g00ecf