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 03e9581..337a6a3 100644
--- a/model/settings.go
+++ b/model/settings.go
@@ -2,6 +2,7 @@ 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"`
@@ -15,6 +16,7 @@ type Settings struct {
func NewSettings() *Settings {
return &Settings{
DefaultVisibility: "public",
+ DefaultFormat: "",
CopyScope: true,
ThreadInNewTab: false,
HideAttachments: false,