summaryrefslogtreecommitdiff
path: root/public/index.php
diff options
context:
space:
mode:
authormsquare <msquare@notrademark.de>2017-12-29 19:06:23 +0100
committerGitHub <noreply@github.com>2017-12-29 19:06:23 +0100
commit372f474dbcf7524cc10aff0be0bb39c1a90df1f4 (patch)
tree3870eaeaa468caeee9c24f63f0f942a7548aba3b /public/index.php
parent14584b96114d2fcb0dabe49a9c857ff241421cc8 (diff)
parent4579509b0e21d33ae27ecb5910fdc1d31b1e027a (diff)
Merge pull request #407 from engelsystem/feature-work-log
Feature work log
Diffstat (limited to 'public/index.php')
-rw-r--r--public/index.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/public/index.php b/public/index.php
index af7318b1..adf22e71 100644
--- a/public/index.php
+++ b/public/index.php
@@ -22,6 +22,7 @@ $free_pages = [
'users',
'user_driver_licenses',
'user_password_recovery',
+ 'user_worklog'
];
// Gewünschte Seite/Funktion
@@ -130,6 +131,9 @@ if (
$title = shifts_title();
$content = user_shifts();
break;
+ case 'user_worklog':
+ list($title, $content) = user_worklogs_controller();
+ break;
case 'user_messages':
$title = messages_title();
$content = user_messages();