mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
18 lines
301 B
PHP
18 lines
301 B
PHP
<?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);
|
|
}
|
|
}
|