diff options
author | msquare <msquare@notrademark.de> | 2018-02-21 16:10:13 +0100 |
---|---|---|
committer | msquare <msquare@notrademark.de> | 2018-02-21 16:10:13 +0100 |
commit | ae4dbf95ba9f2a00b70cd27f5fce13884fa9060d (patch) | |
tree | c795937a1bda07f8afec0bf6fdccb53c54c5af0f | |
parent | 6dbec2e2fb64ad8a2f9ae1c9271a401e097a989f (diff) |
remove json export all shifts
-rwxr-xr-x | public/index.php | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/public/index.php b/public/index.php index adf22e71..a2adc82a 100755 --- a/public/index.php +++ b/public/index.php @@ -17,7 +17,6 @@ $free_pages = [ 'shift_entries', 'shifts', 'shifts_json_export', - 'shifts_json_export_all', 'stats', 'users', 'user_driver_licenses', @@ -67,10 +66,6 @@ if ( require_once realpath(__DIR__ . '/../includes/controller/shifts_controller.php'); shifts_json_export_controller(); break; - case 'shifts_json_export_all': - require_once realpath(__DIR__ . '/../includes/controller/shifts_controller.php'); - shifts_json_export_all_controller(); - break; case 'stats': require_once realpath(__DIR__ . '/../includes/pages/guest_stats.php'); guest_stats(); |