Signed-off-by: Denis Bykhov <80476319+BykhovDenis@users.noreply.github.com>
This commit is contained in:
Denis Bykhov
2022-07-01 22:22:58 +07:00
committed by GitHub
parent 25afe12cc2
commit efc3583376
41 changed files with 502 additions and 229 deletions
+8 -3
View File
@@ -60,6 +60,7 @@ export interface SettingsCategory extends Doc {
// If defined, will sort using order.
order?: number
secured: boolean
}
/**
@@ -78,13 +79,15 @@ export default plugin(settingId, {
Support: '' as Ref<Doc>,
Privacy: '' as Ref<Doc>,
Terms: '' as Ref<Doc>,
ClassSetting: '' as Ref<Doc>
ClassSetting: '' as Ref<Doc>,
Owners: '' as Ref<Doc>
},
mixin: {
Editable: '' as Ref<Mixin<Editable>>
},
class: {
SettingsCategory: '' as Ref<Class<SettingsCategory>>,
WorkspaceSettingCategory: '' as Ref<Class<SettingsCategory>>,
Integration: '' as Ref<Class<Integration>>,
IntegrationType: '' as Ref<Class<IntegrationType>>
},
@@ -92,7 +95,7 @@ export default plugin(settingId, {
Settings: '' as AnyComponent,
Profile: '' as AnyComponent,
Password: '' as AnyComponent,
Setting: '' as AnyComponent,
WorkspaceSettings: '' as AnyComponent,
Integrations: '' as AnyComponent,
ManageStatuses: '' as AnyComponent,
Support: '' as AnyComponent,
@@ -103,6 +106,7 @@ export default plugin(settingId, {
string: {
Settings: '' as IntlString,
Setting: '' as IntlString,
WorkspaceSetting: '' as IntlString,
Integrations: '' as IntlString,
ManageStatuses: '' as IntlString,
Support: '' as IntlString,
@@ -127,7 +131,8 @@ export default plugin(settingId, {
InviteWorkspace: '' as IntlString,
SelectWorkspace: '' as IntlString,
Reconnect: '' as IntlString,
ClassSetting: '' as IntlString
ClassSetting: '' as IntlString,
Owners: '' as IntlString
},
icon: {
EditProfile: '' as Asset,