aboutsummaryrefslogtreecommitdiff
path: root/model/settings.go
diff options
context:
space:
mode:
Diffstat (limited to 'model/settings.go')
-rw-r--r--model/settings.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/model/settings.go b/model/settings.go
index 55db08a..02bebcb 100644
--- a/model/settings.go
+++ b/model/settings.go
@@ -4,6 +4,7 @@ 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"`
}
func NewSettings() *Settings {
@@ -11,5 +12,6 @@ func NewSettings() *Settings {
DefaultVisibility: "public",
CopyScope: true,
ThreadInNewTab: false,
+ MaskNSFW: true,
}
}