2022-03-23 18:47:00 +00:00
|
|
|
package settings
|
|
|
|
|
|
|
|
type SyncSource int
|
|
|
|
|
|
|
|
const (
|
|
|
|
FromInterface SyncSource = iota + 1
|
|
|
|
FromStruct
|
|
|
|
)
|
|
|
|
|
|
|
|
type ProfilePicturesVisibilityType int
|
|
|
|
|
|
|
|
const (
|
|
|
|
ProfilePicturesVisibilityContactsOnly ProfilePicturesVisibilityType = iota + 1
|
|
|
|
ProfilePicturesVisibilityEveryone
|
|
|
|
ProfilePicturesVisibilityNone
|
|
|
|
)
|
|
|
|
|
|
|
|
type ProfilePicturesShowToType int
|
|
|
|
|
|
|
|
const (
|
|
|
|
ProfilePicturesShowToContactsOnly ProfilePicturesShowToType = iota + 1
|
|
|
|
ProfilePicturesShowToEveryone
|
|
|
|
ProfilePicturesShowToNone
|
|
|
|
)
|
2023-10-13 14:31:56 +00:00
|
|
|
|
|
|
|
type URLUnfurlingModeType int
|
|
|
|
|
|
|
|
const (
|
|
|
|
URLUnfurlingAlwaysAsk URLUnfurlingModeType = iota + 1
|
|
|
|
URLUnfurlingEnableAll
|
|
|
|
URLUnfurlingDisableAll
|
|
|
|
)
|