mirror of
https://gitea.phreedom.club/localhost_frssoft/bloat.git
synced 2024-11-04 22:23:02 +00:00
16 lines
335 B
Go
16 lines
335 B
Go
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,
|
|
}
|
|
}
|