chore: update workspace setting keys

This commit is contained in:
Steven
2023-09-21 08:21:26 +08:00
parent e82e61d54d
commit 763205a89b
9 changed files with 245 additions and 195 deletions

View File

@ -19,16 +19,17 @@ service WorkspaceSettingService {
}
message WorkspaceSetting {
string license_key = 1;
// Whether to enable other users to sign up.
bool enable_signup = 1;
bool enable_signup = 2;
// The relative path of the resource directory.
string resource_relative_path = 2;
string resource_relative_path = 3;
// The custom style.
string custom_style = 3;
string custom_style = 4;
// The custom script.
string custom_script = 4;
string custom_script = 5;
// The auto backup setting.
AutoBackupWorkspaceSetting auto_backup = 5;
AutoBackupWorkspaceSetting auto_backup = 6;
}
message AutoBackupWorkspaceSetting {