feat: add workspace custom branding setting

This commit is contained in:
Steven
2024-07-29 22:22:06 +08:00
parent d513e89438
commit a113d82e9b
8 changed files with 214 additions and 131 deletions

View File

@ -40,13 +40,17 @@ message WorkspaceProfile {
// The owner name.
// Format: "users/{id}"
string owner = 6;
// The workspace branding.
bytes branding = 7;
}
message WorkspaceSetting {
// The workspace custome branding.
bytes branding = 1;
// The custom style.
string custom_style = 1;
string custom_style = 2;
// The default visibility of shortcuts and collections.
Visibility default_visibility = 2;
Visibility default_visibility = 3;
}
message GetWorkspaceProfileRequest {}