2019-12-21 11:13:21 +00:00
|
|
|
package model
|
|
|
|
|
|
|
|
type Settings struct {
|
2021-12-13 13:58:15 +00:00
|
|
|
DefaultVisibility string `json:"default_visibility"`
|
|
|
|
DefaultFormat string `json:"default_format"`
|
|
|
|
CopyScope bool `json:"copy_scope"`
|
|
|
|
ThreadInNewTab bool `json:"thread_in_new_tab"`
|
|
|
|
HideAttachments bool `json:"hide_attachments"`
|
|
|
|
MaskNSFW bool `json:"mask_nfsw"`
|
|
|
|
NotificationInterval int `json:"notifications_interval"`
|
|
|
|
FluorideMode bool `json:"fluoride_mode"`
|
|
|
|
DarkMode bool `json:"dark_mode"`
|
|
|
|
AntiDopamineMode bool `json:"anti_dopamine_mode"`
|
|
|
|
HideUnsupportedNotifs bool `json:"hide_unsupported_notifs"`
|
|
|
|
CSS string `json:"css"`
|
2019-12-29 11:32:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewSettings() *Settings {
|
|
|
|
return &Settings{
|
2021-12-13 13:58:15 +00:00
|
|
|
DefaultVisibility: "public",
|
|
|
|
DefaultFormat: "",
|
|
|
|
CopyScope: true,
|
|
|
|
ThreadInNewTab: false,
|
|
|
|
HideAttachments: false,
|
|
|
|
MaskNSFW: true,
|
|
|
|
NotificationInterval: 0,
|
|
|
|
FluorideMode: false,
|
|
|
|
DarkMode: false,
|
|
|
|
AntiDopamineMode: false,
|
|
|
|
HideUnsupportedNotifs: false,
|
|
|
|
CSS: "",
|
2019-12-29 11:32:24 +00:00
|
|
|
}
|
2019-12-21 11:13:21 +00:00
|
|
|
}
|