aboutsummaryrefslogtreecommitdiff
path: root/model/settings.go
blob: 55db08af6bacac99187f7de818d04566d4a52670 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package model

type Settings struct {
	DefaultVisibility string `json:"default_visibility"`
	CopyScope         bool   `json:"copy_scope"`
	ThreadInNewTab    bool   `json:"thread_in_new_tab"`
}

func NewSettings() *Settings {
	return &Settings{
		DefaultVisibility: "public",
		CopyScope:         true,
		ThreadInNewTab:    false,
	}
}