chore: fix memo search

This commit is contained in:
Steven
2023-12-22 00:31:29 +08:00
parent 81524c38e9
commit 02265a6e1a
7 changed files with 69 additions and 54 deletions

View File

@@ -316,7 +316,7 @@ type ListMemosRequest struct {
// limit is the maximum number of memos to return.
Limit int32 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
// Filter is used to filter memos returned in the list.
// Format: "creator == users/{username} && visibility == PUBLIC"
// Format: "creator == users/{username} && visibilities == ['PUBLIC', 'PROTECTED']"
Filter string `protobuf:"bytes,3,opt,name=filter,proto3" json:"filter,omitempty"`
}