summaryrefslogtreecommitdiff
path: root/app/Api/CategoryApi.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-06-26 10:25:13 -0400
committerFrederic Guillot <fred@kanboard.net>2016-06-26 10:25:13 -0400
commit4a230d331ec220fc32a48525afb308af0d9787fa (patch)
tree514aa3d703155b7f97a2c77147c9fd74cef60f84 /app/Api/CategoryApi.php
parent922e0fb6de06a98774418612e0b0f75af72b6dbb (diff)
Added application and project roles validation for API procedure calls
Diffstat (limited to 'app/Api/CategoryApi.php')
-rw-r--r--app/Api/CategoryApi.php51
1 files changed, 0 insertions, 51 deletions
diff --git a/app/Api/CategoryApi.php b/app/Api/CategoryApi.php
deleted file mode 100644
index c56cfb35..00000000
--- a/app/Api/CategoryApi.php
+++ /dev/null
@@ -1,51 +0,0 @@
-<?php
-
-namespace Kanboard\Api;
-
-use Kanboard\Core\Base;
-
-/**
- * Category API controller
- *
- * @package Kanboard\Api
- * @author Frederic Guillot
- */
-class CategoryApi extends Base
-{
- public function getCategory($category_id)
- {
- return $this->categoryModel->getById($category_id);
- }
-
- public function getAllCategories($project_id)
- {
- return $this->categoryModel->getAll($project_id);
- }
-
- public function removeCategory($category_id)
- {
- return $this->categoryModel->remove($category_id);
- }
-
- public function createCategory($project_id, $name)
- {
- $values = array(
- 'project_id' => $project_id,
- 'name' => $name,
- );
-
- list($valid, ) = $this->categoryValidator->validateCreation($values);
- return $valid ? $this->categoryModel->create($values) : false;
- }
-
- public function updateCategory($id, $name)
- {
- $values = array(
- 'id' => $id,
- 'name' => $name,
- );
-
- list($valid, ) = $this->categoryValidator->validateModification($values);
- return $valid && $this->categoryModel->update($values);
- }
-}