Rename Api classes

This commit is contained in:
Frederic Guillot
2016-05-16 21:07:29 -04:00
parent 4514bc1d4b
commit b1e2ca00ce
21 changed files with 104 additions and 79 deletions

18
app/Api/BoardApi.php Normal file
View File

@@ -0,0 +1,18 @@
<?php
namespace Kanboard\Api;
/**
* Board API controller
*
* @package Kanboard\Api
* @author Frederic Guillot
*/
class BoardApi extends BaseApi
{
public function getBoard($project_id)
{
$this->checkProjectPermission($project_id);
return $this->board->getBoard($project_id);
}
}