You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
1.3 KiB
24 lines
1.3 KiB
package models
|
|
|
|
// Settings is made up of parsed SettingEntry objects retrieved from the database
|
|
//type Settings struct {
|
|
// MetricsNotifyLevel pkg.MetricsNotifyLevel `json:"metrics.notify.level" mapstructure:"metrics.notify.level"`
|
|
// MetricsStatusFilterAttributes pkg.MetricsStatusFilterAttributes `json:"metrics.status.filter_attributes" mapstructure:"metrics.status.filter_attributes"`
|
|
// MetricsStatusThreshold pkg.MetricsStatusThreshold `json:"metrics.status.threshold" mapstructure:"metrics.status.threshold"`
|
|
//}
|
|
|
|
type Settings struct {
|
|
Theme string `json:"theme" mapstructure:"theme"`
|
|
Layout string `json:"layout" mapstructure:"layout"`
|
|
DashboardDisplay string `json:"dashboard_display" mapstructure:"dashboard_display"`
|
|
DashboardSort string `json:"dashboard_sort" mapstructure:"dashboard_sort"`
|
|
TemperatureUnit string `json:"temperature_unit" mapstructure:"temperature_unit"`
|
|
FileSizeSIUnits bool `json:"file_size_si_units" mapstructure:"file_size_si_units"`
|
|
|
|
Metrics struct {
|
|
NotifyLevel int `json:"notify_level" mapstructure:"notify_level"`
|
|
StatusFilterAttributes int `json:"status_filter_attributes" mapstructure:"status_filter_attributes"`
|
|
StatusThreshold int `json:"status_threshold" mapstructure:"status_threshold"`
|
|
} `json:"metrics" mapstructure:"metrics"`
|
|
}
|