mirror of
https://github.com/JanGross/quicknotes.git
synced 2025-12-01 07:37:18 +01:00
Add inital view of tags
This commit is contained in:
@@ -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
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user