github.com/status-im/status-go@v1.1.0/multiaccounts/settings/enums.go (about)

     1  package settings
     2  
     3  type SyncSource int
     4  
     5  const (
     6  	FromInterface SyncSource = iota + 1
     7  	FromStruct
     8  )
     9  
    10  type ProfilePicturesVisibilityType int
    11  
    12  const (
    13  	ProfilePicturesVisibilityContactsOnly ProfilePicturesVisibilityType = iota + 1
    14  	ProfilePicturesVisibilityEveryone
    15  	ProfilePicturesVisibilityNone
    16  )
    17  
    18  type ProfilePicturesShowToType int
    19  
    20  const (
    21  	ProfilePicturesShowToContactsOnly ProfilePicturesShowToType = iota + 1
    22  	ProfilePicturesShowToEveryone
    23  	ProfilePicturesShowToNone
    24  )
    25  
    26  type URLUnfurlingModeType int
    27  
    28  const (
    29  	URLUnfurlingAlwaysAsk URLUnfurlingModeType = iota + 1
    30  	URLUnfurlingEnableAll
    31  	URLUnfurlingDisableAll
    32  )