summaryrefslogtreecommitdiff
path: root/app/Controller/Project.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Controller/Project.php')
-rw-r--r--app/Controller/Project.php17
1 files changed, 16 insertions, 1 deletions
diff --git a/app/Controller/Project.php b/app/Controller/Project.php
index 9037a91a..a7e8a39b 100644
--- a/app/Controller/Project.php
+++ b/app/Controller/Project.php
@@ -52,7 +52,6 @@ class Project extends Base
$this->response->html($this->projectLayout('project/show', array(
'project' => $project,
'stats' => $this->project->getStats($project['id']),
- 'webhook_token' => $this->config->get('webhook_token'),
'title' => $project['name'],
)));
}
@@ -153,6 +152,22 @@ class Project extends Base
}
/**
+ * Integrations page
+ *
+ * @access public
+ */
+ public function integration()
+ {
+ $project = $this->getProjectManagement();
+
+ $this->response->html($this->projectLayout('project/integrations', array(
+ 'project' => $project,
+ 'title' => t('Integrations'),
+ 'webhook_token' => $this->config->get('webhook_token'),
+ )));
+ }
+
+ /**
* Display a form to edit a project
*
* @access public