diff options
Diffstat (limited to 'app/Controller')
-rw-r--r-- | app/Controller/Config.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/app/Controller/Config.php b/app/Controller/Config.php index 6f3bc43c..57f586ae 100644 --- a/app/Controller/Config.php +++ b/app/Controller/Config.php @@ -43,6 +43,9 @@ class Config extends Base if ($redirect === 'board') { $values += array('subtask_restriction' => 0, 'subtask_time_tracking' => 0, 'subtask_forecast' => 0); } + else if ($redirect === 'integrations') { + $values += array('integration_slack_webhook' => 0); + } if ($this->config->save($values)) { $this->config->reload(); @@ -102,6 +105,20 @@ class Config extends Base } /** + * Display the integration settings page + * + * @access public + */ + public function integrations() + { + $this->common('integrations'); + + $this->response->html($this->layout('config/integrations', array( + 'title' => t('Settings').' > '.t('Integrations'), + ))); + } + + /** * Display the webhook settings page * * @access public |