feat: add org onboarding preference (#6248)

This commit is contained in:
Yunus M 2024-10-23 23:27:25 +05:30 committed by GitHub
parent 8bad036423
commit 910c44cefc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,37 +1,14 @@
package preferences package preferences
var preferenceMap = map[string]Preference{ var preferenceMap = map[string]Preference{
"DASHBOARDS_LIST_VIEW": { "ORG_ONBOARDING": {
Key: "DASHBOARDS_LIST_VIEW", Key: "ORG_ONBOARDING",
Name: "Dashboards List View", Name: "Organisation Onboarding",
Description: "", Description: "Organisation Onboarding",
ValueType: "string",
DefaultValue: "grid",
AllowedValues: []interface{}{"grid", "list"},
IsDiscreteValues: true,
AllowedScopes: []string{"user", "org"},
},
"LOGS_TOOLBAR_COLLAPSED": {
Key: "LOGS_TOOLBAR_COLLAPSED",
Name: "Logs toolbar",
Description: "",
ValueType: "boolean", ValueType: "boolean",
DefaultValue: false, DefaultValue: false,
AllowedValues: []interface{}{true, false}, AllowedValues: []interface{}{true, false},
IsDiscreteValues: true, IsDiscreteValues: true,
AllowedScopes: []string{"user", "org"}, AllowedScopes: []string{"org"},
},
"MAX_DEPTH_ALLOWED": {
Key: "MAX_DEPTH_ALLOWED",
Name: "Max Depth Allowed",
Description: "",
ValueType: "integer",
DefaultValue: 10,
IsDiscreteValues: false,
Range: Range{
Min: 0,
Max: 100,
},
AllowedScopes: []string{"user", "org"},
}, },
} }