From 6dbec2e2fb64ad8a2f9ae1c9271a401e097a989f Mon Sep 17 00:00:00 2001 From: msquare Date: Sun, 28 Jan 2018 14:52:22 +0100 Subject: remove unused code --- includes/controller/shifts_controller.php | 26 -------------------------- 1 file changed, 26 deletions(-) (limited to 'includes/controller') diff --git a/includes/controller/shifts_controller.php b/includes/controller/shifts_controller.php index 5930595e..73a5d29f 100644 --- a/includes/controller/shifts_controller.php +++ b/includes/controller/shifts_controller.php @@ -345,32 +345,6 @@ function shift_next_controller() redirect(page_link_to('user_shifts')); } -/** - * Export all shifts using api-key. - */ -function shifts_json_export_all_controller() -{ - $api_key = config('api_key'); - $request = request(); - - if (empty($api_key)) { - engelsystem_error('Config contains empty apikey.'); - } - - if (!$request->has('api_key')) { - engelsystem_error('Missing parameter api_key.'); - } - - if ($request->input('api_key') != $api_key) { - engelsystem_error('Invalid api_key.'); - } - - $shifts_source = Shifts(); - - header('Content-Type: application/json; charset=utf-8'); - raw_output(json_encode($shifts_source)); -} - /** * Export filtered shifts via JSON. * (Like iCal Export or shifts view) -- cgit v1.2.3-54-g00ecf