mirror of
https://github.com/Karaka-Management/oms-Kanban.git
synced 2026-02-09 00:38:42 +00:00
fix todos/move to todo list
This commit is contained in:
parent
7a0d019202
commit
8173246768
|
|
@ -39,10 +39,6 @@ use phpOMS\Model\Message\FormValidation;
|
|||
* @license OMS License 1.0
|
||||
* @link https://orange-management.org
|
||||
* @since 1.0.0
|
||||
*
|
||||
* @todo Orange-Management/Modules#77
|
||||
* Edit functionality
|
||||
* Currently nothing can be edited (change)
|
||||
*/
|
||||
final class ApiController extends Controller
|
||||
{
|
||||
|
|
|
|||
|
|
@ -20,6 +20,7 @@ use Modules\Kanban\Models\PermissionState;
|
|||
use phpOMS\Account\PermissionType;
|
||||
use phpOMS\Asset\AssetType;
|
||||
use phpOMS\Contract\RenderableInterface;
|
||||
use phpOMS\DataStorage\Database\RelationType;
|
||||
use phpOMS\Message\Http\RequestStatusCode;
|
||||
use phpOMS\Message\RequestAbstract;
|
||||
use phpOMS\Message\ResponseAbstract;
|
||||
|
|
@ -32,10 +33,6 @@ use phpOMS\Views\View;
|
|||
* @license OMS License 1.0
|
||||
* @link https://orange-management.org
|
||||
* @since 1.0.0
|
||||
*
|
||||
* @todo Orange-Management/Modules#77
|
||||
* Edit functionality
|
||||
* Currently nothing can be edited (change)
|
||||
*/
|
||||
final class BackendController extends Controller
|
||||
{
|
||||
|
|
@ -48,9 +45,6 @@ final class BackendController extends Controller
|
|||
*
|
||||
* @return void
|
||||
*
|
||||
* @todo Orange-Management/Modules#76
|
||||
* Style board, card and columns
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
|
|
@ -80,7 +74,7 @@ final class BackendController extends Controller
|
|||
$view->setTemplate('/Modules/Kanban/Theme/Backend/kanban-dashboard');
|
||||
$view->addData('nav', $this->app->moduleManager->get('Navigation')->createNavigationMid(1005801001, $request, $response));
|
||||
|
||||
$list = KanbanBoardMapper::getNewest(50);
|
||||
$list = KanbanBoardMapper::getNewest(50, null, RelationType::ALL, 1);
|
||||
$view->setData('boards', $list);
|
||||
|
||||
return $view;
|
||||
|
|
|
|||
|
|
@ -15,7 +15,6 @@ declare(strict_types=1);
|
|||
namespace Modules\Kanban\Controller;
|
||||
|
||||
use phpOMS\Module\ModuleAbstract;
|
||||
use phpOMS\Module\WebInterface;
|
||||
|
||||
/**
|
||||
* Task class.
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user