mirror of
https://git.phreedom.club/localhost_frssoft/bloat.git
synced 2024-11-05 04:33:13 +00:00
20 lines
484 B
Go
20 lines
484 B
Go
package model
|
|
|
|
type Settings struct {
|
|
DefaultVisibility string `json:"default_visibility"`
|
|
CopyScope bool `json:"copy_scope"`
|
|
ThreadInNewTab bool `json:"thread_in_new_tab"`
|
|
MaskNSFW bool `json:"mask_nfsw"`
|
|
FluorideMode bool `json:"fluoride_mode"`
|
|
}
|
|
|
|
func NewSettings() *Settings {
|
|
return &Settings{
|
|
DefaultVisibility: "public",
|
|
CopyScope: true,
|
|
ThreadInNewTab: false,
|
|
MaskNSFW: true,
|
|
FluorideMode: false,
|
|
}
|
|
}
|