summaryrefslogtreecommitdiff
path: root/app/Api/Group.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Api/Group.php')
-rw-r--r--app/Api/Group.php49
1 files changed, 49 insertions, 0 deletions
diff --git a/app/Api/Group.php b/app/Api/Group.php
new file mode 100644
index 00000000..a1e0a73d
--- /dev/null
+++ b/app/Api/Group.php
@@ -0,0 +1,49 @@
+<?php
+
+namespace Kanboard\Api;
+
+/**
+ * Group API controller
+ *
+ * @package api
+ * @author Frederic Guillot
+ */
+class Group extends \Kanboard\Core\Base
+{
+ public function createGroup($name, $external_id = '')
+ {
+ return $this->group->create($name, $external_id);
+ }
+
+ public function updateGroup($group_id, $name = null, $external_id = null)
+ {
+ $values = array(
+ 'id' => $group_id,
+ 'name' => $name,
+ 'external_id' => $external_id,
+ );
+
+ foreach ($values as $key => $value) {
+ if (is_null($value)) {
+ unset($values[$key]);
+ }
+ }
+
+ return $this->group->update($values);
+ }
+
+ public function removeGroup($group_id)
+ {
+ return $this->group->remove($group_id);
+ }
+
+ public function getGroup($group_id)
+ {
+ return $this->group->getById($group_id);
+ }
+
+ public function getAllGroups()
+ {
+ return $this->group->getAll();
+ }
+}