mirror of
https://gitea.phreedom.club/localhost_frssoft/bloat.git
synced 2024-11-05 06:33:01 +00:00
c3d90539e9
It replaces the "Auto refresh notifications" checkbox
30 lines
936 B
Go
30 lines
936 B
Go
package model
|
|
|
|
type Settings struct {
|
|
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"`
|
|
}
|
|
|
|
func NewSettings() *Settings {
|
|
return &Settings{
|
|
DefaultVisibility: "public",
|
|
DefaultFormat: "",
|
|
CopyScope: true,
|
|
ThreadInNewTab: false,
|
|
HideAttachments: false,
|
|
MaskNSFW: true,
|
|
NotificationInterval: 0,
|
|
FluorideMode: false,
|
|
DarkMode: false,
|
|
AntiDopamineMode: false,
|
|
}
|
|
}
|