Add inital view of tags

This commit is contained in:
Matias De lellis
2019-11-06 11:42:30 -03:00
parent 8396e2a40a
commit b7b0158a72
10 changed files with 152 additions and 10 deletions

View File

@@ -14,6 +14,7 @@ class Note extends Entity implements JsonSerializable {
protected $userId;
protected $sharedWith;
protected $isShared;
protected $tags;
protected $color;
@@ -31,7 +32,8 @@ class Note extends Entity implements JsonSerializable {
'color' => $this->color,
'userid' => $this->userId,
'sharedwith' => $this->sharedWith,
'isshared' => $this->isShared
'isshared' => $this->isShared,
'tags' => $this->tags
];
}
}