mirror of
https://github.com/usememos/memos.git
synced 2025-06-05 22:09:59 +02:00
refactor: move tags from property to payload (#4229)
* refactor: move tags from property to payload * chore: fix tests * chore: drop memo tags * chore: update --------- Co-authored-by: Steven <stevenlgtm@gmail.com>
This commit is contained in:
@ -179,11 +179,10 @@ message Memo {
|
||||
}
|
||||
|
||||
message MemoProperty {
|
||||
repeated string tags = 1;
|
||||
bool has_link = 2;
|
||||
bool has_task_list = 3;
|
||||
bool has_code = 4;
|
||||
bool has_incomplete_tasks = 5;
|
||||
bool has_link = 1;
|
||||
bool has_task_list = 2;
|
||||
bool has_code = 3;
|
||||
bool has_incomplete_tasks = 4;
|
||||
}
|
||||
|
||||
message Location {
|
||||
|
Reference in New Issue
Block a user