Merge pull-request #145 (Json-RPC fix)
This commit is contained in:
parent
e5e355d068
commit
4f67a8da32
|
|
@ -62,6 +62,7 @@ Contributors:
|
|||
- Mathgl67: https://github.com/mathgl67
|
||||
- Matthieu Keller: https://github.com/maggick
|
||||
- Maxime: https://github.com/EpocDotFr
|
||||
- Moraxy: https://github.com/moraxy
|
||||
- Nala Ginrut: https://github.com/NalaGinrut
|
||||
- Nekohayo: https://github.com/nekohayo
|
||||
- Olivier Maridat: https://github.com/oliviermaridat
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ use Model\User;
|
|||
use Model\Config;
|
||||
use Model\Category;
|
||||
use Model\Comment;
|
||||
use Model\Subtask;
|
||||
use Model\SubTask;
|
||||
use Model\Board;
|
||||
use Model\Action;
|
||||
|
||||
|
|
@ -20,7 +20,7 @@ $task = new Task($registry->shared('db'), $registry->shared('event'));
|
|||
$user = new User($registry->shared('db'), $registry->shared('event'));
|
||||
$category = new Category($registry->shared('db'), $registry->shared('event'));
|
||||
$comment = new Comment($registry->shared('db'), $registry->shared('event'));
|
||||
$subtask = new Subtask($registry->shared('db'), $registry->shared('event'));
|
||||
$subtask = new SubTask($registry->shared('db'), $registry->shared('event'));
|
||||
$board = new Board($registry->shared('db'), $registry->shared('event'));
|
||||
$action = new Action($registry->shared('db'), $registry->shared('event'));
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue