memos/proto/store/workspace_setting.proto

92 lines
2.7 KiB
Protocol Buffer
Raw Normal View History

2024-01-06 19:46:21 +08:00
syntax = "proto3";
package memos.store;
option go_package = "gen/store";
enum WorkspaceSettingKey {
WORKSPACE_SETTING_KEY_UNSPECIFIED = 0;
// WORKSPACE_SETTING_BASIC is the key for basic settings.
WORKSPACE_SETTING_BASIC = 1;
// WORKSPACE_SETTING_GENERAL is the key for general settings.
WORKSPACE_SETTING_GENERAL = 2;
// WORKSPACE_SETTING_STORAGE is the key for storage settings.
WORKSPACE_SETTING_STORAGE = 3;
2024-04-10 20:05:17 +08:00
// WORKSPACE_SETTING_MEMO_RELATED is the key for memo related settings.
WORKSPACE_SETTING_MEMO_RELATED = 4;
2024-01-06 19:46:21 +08:00
}
message WorkspaceSetting {
WorkspaceSettingKey key = 1;
oneof value {
WorkspaceBasicSetting basic_setting = 2;
WorkspaceGeneralSetting general_setting = 3;
WorkspaceStorageSetting storage_setting = 4;
WorkspaceMemoRelatedSetting memo_related_setting = 5;
}
}
message WorkspaceBasicSetting {
string server_id = 1;
string secret_key = 2;
}
message WorkspaceGeneralSetting {
// instance_url is the instance URL.
2024-01-06 19:46:21 +08:00
string instance_url = 1;
// disallow_signup is the flag to disallow signup.
2024-01-06 19:46:21 +08:00
bool disallow_signup = 2;
// disallow_password_login is the flag to disallow password login.
bool disallow_password_login = 3;
// additional_script is the additional script.
2024-04-12 08:32:54 +08:00
string additional_script = 4;
// additional_style is the additional style.
2024-04-12 08:32:54 +08:00
string additional_style = 5;
// custom_profile is the custom profile.
2024-04-12 08:32:54 +08:00
WorkspaceCustomProfile custom_profile = 6;
}
message WorkspaceCustomProfile {
string title = 1;
string description = 2;
string logo_url = 3;
string locale = 4;
string appearance = 5;
2024-01-06 19:46:21 +08:00
}
2024-04-10 20:05:17 +08:00
message WorkspaceStorageSetting {
enum StorageType {
STORAGE_TYPE_UNSPECIFIED = 0;
// STORAGE_TYPE_DATABASE is the database storage type.
STORAGE_TYPE_DATABASE = 1;
// STORAGE_TYPE_LOCAL is the local storage type.
STORAGE_TYPE_LOCAL = 2;
2024-04-28 21:36:22 +08:00
// STORAGE_TYPE_S3 is the S3 storage type.
STORAGE_TYPE_S3 = 3;
}
// storage_type is the storage type.
StorageType storage_type = 1;
// The template of file path.
// e.g. assets/{timestamp}_{filename}
string filepath_template = 2;
// The max upload size in megabytes.
int64 upload_size_limit_mb = 3;
// Reference: https://developers.cloudflare.com/r2/examples/aws/aws-sdk-go/
message S3Config {
string access_key_id = 1;
string access_key_secret = 2;
string endpoint = 3;
string region = 4;
string bucket = 5;
}
2024-04-28 21:36:22 +08:00
// The S3 config.
S3Config s3_config = 4;
}
2024-04-10 20:05:17 +08:00
message WorkspaceMemoRelatedSetting {
// disallow_public_share disallows set memo as public visible.
bool disallow_public_visible = 1;
// display_with_update_time orders and displays memo with update time.
bool display_with_update_time = 2;
}