summaryrefslogtreecommitdiff
path: root/app/Controller/ConfigController.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Controller/ConfigController.php')
-rw-r--r--app/Controller/ConfigController.php18
1 files changed, 0 insertions, 18 deletions
diff --git a/app/Controller/ConfigController.php b/app/Controller/ConfigController.php
index 6b85d1f9..2ea04b35 100644
--- a/app/Controller/ConfigController.php
+++ b/app/Controller/ConfigController.php
@@ -46,12 +46,6 @@ class ConfigController extends BaseController
'disable_private_project' => 0,
);
break;
- case 'integrations':
- $values += array('integration_gravatar' => 0);
- break;
- case 'calendar':
- $values += array('calendar_user_subtasks_time_tracking' => 0);
- break;
}
if ($this->configModel->save($values)) {
@@ -128,18 +122,6 @@ class ConfigController extends BaseController
}
/**
- * Display the calendar settings page
- *
- * @access public
- */
- public function calendar()
- {
- $this->response->html($this->helper->layout->config('config/calendar', array(
- 'title' => t('Settings').' > '.t('Calendar settings'),
- )));
- }
-
- /**
* Display the integration settings page
*
* @access public