Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Share tags #4198

Open
wants to merge 12 commits into
base: main
Choose a base branch
from
3 changes: 3 additions & 0 deletions proto/api/v1/memo_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,9 @@ enum MemoView {

// The metadata only view of the memo. Excludes the content/snippet fields.
MEMO_VIEW_METADATA_ONLY = 2;

// The tag centered view of memos. Excludes the content/snippet fields. Allows for shared tags.
MEMO_VIEW_TAGS = 3;
}

message ListMemosRequest {
Expand Down
2 changes: 2 additions & 0 deletions proto/api/v1/workspace_setting_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,8 @@ message WorkspaceMemoRelatedSetting {
repeated string reactions = 10;
// disable_markdown_shortcuts disallow the registration of markdown shortcuts.
bool disable_markdown_shortcuts = 11;
// share PUBLIC and PROTECTED tags between users.
bool share_tags = 12;
}

message GetWorkspaceSettingRequest {
Expand Down
290 changes: 148 additions & 142 deletions proto/gen/api/v1/memo_service.pb.go

Large diffs are not rendered by default.

104 changes: 57 additions & 47 deletions proto/gen/api/v1/workspace_setting_service.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading