mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-07-13 23:01:53 +08:00
15 lines
392 B
Go
15 lines
392 B
Go
package preferences
|
|
|
|
var preferenceMap = map[string]Preference{
|
|
"ORG_ONBOARDING": {
|
|
Key: "ORG_ONBOARDING",
|
|
Name: "Organisation Onboarding",
|
|
Description: "Organisation Onboarding",
|
|
ValueType: "boolean",
|
|
DefaultValue: false,
|
|
AllowedValues: []interface{}{true, false},
|
|
IsDiscreteValues: true,
|
|
AllowedScopes: []string{"org"},
|
|
},
|
|
}
|