This commit is contained in:
Julius Haertl
2016-06-20 10:44:41 +02:00
parent ba8283dcdf
commit c0a9f010a8
28 changed files with 691 additions and 106 deletions

View File

@@ -12,6 +12,7 @@ class Board extends Entity implements JsonSerializable {
protected $owner;
protected $color;
protected $archived;
protected $labels;
public function __construct() {
$this->addType('id','integer');
}
@@ -20,7 +21,8 @@ class Board extends Entity implements JsonSerializable {
'id' => $this->id,
'title' => $this->title,
'owner' => $this->owner,
'color' => $this->color
'color' => $this->color,
'labels' => $this->labels,
];
}
}