summaryrefslogtreecommitdiff
path: root/app/Api/Board.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-05-16 21:07:29 -0400
committerFrederic Guillot <fred@kanboard.net>2016-05-16 21:07:29 -0400
commitb1e2ca00ce7375ffcbe5e927135c8892036e6bd6 (patch)
tree07ce453261f6493de7c901cfd8b4f0d9af85556d /app/Api/Board.php
parent4514bc1d4b4abff23902e46da76e70f13a3647eb (diff)
Rename Api classes
Diffstat (limited to 'app/Api/Board.php')
-rw-r--r--app/Api/Board.php18
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);
- }
-}