Backend: assign/remove user impelementation

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2017-10-01 16:03:14 +02:00
committed by Julius Härtl
parent 01f11d1be9
commit 447cb80573
6 changed files with 56 additions and 9 deletions

View File

@@ -34,6 +34,7 @@ class Card extends RelationalEntity {
protected $lastModified;
protected $createdAt;
protected $labels;
protected $assignedUsers;
protected $owner;
protected $order;
protected $archived = false;
@@ -56,6 +57,7 @@ class Card extends RelationalEntity {
$this->addType('archived', 'boolean');
$this->addType('notified', 'boolean');
$this->addRelation('labels');
$this->addRelation('assignedUsers');
$this->addRelation('participants');
$this->addResolvable('owner');
}