diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-05-16 21:07:29 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-05-16 21:07:29 -0400 |
commit | b1e2ca00ce7375ffcbe5e927135c8892036e6bd6 (patch) | |
tree | 07ce453261f6493de7c901cfd8b4f0d9af85556d /app/Api/Board.php | |
parent | 4514bc1d4b4abff23902e46da76e70f13a3647eb (diff) |
Rename Api classes
Diffstat (limited to 'app/Api/Board.php')
-rw-r--r-- | app/Api/Board.php | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/app/Api/Board.php b/app/Api/Board.php deleted file mode 100644 index 185ac51a..00000000 --- a/app/Api/Board.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -namespace Kanboard\Api; - -/** - * Board API controller - * - * @package api - * @author Frederic Guillot - */ -class Board extends Base -{ - public function getBoard($project_id) - { - $this->checkProjectPermission($project_id); - return $this->board->getBoard($project_id); - } -} |