This repository has been archived on 2023-06-16. You can view files and clone it, but cannot push or open issues or pull requests.
libcwtch-go/constants/attributes.go

29 lines
824 B
Go
Raw Normal View History

2021-06-24 22:30:46 +00:00
package constants
const SchemaVersion = "schemaVersion"
const Name = "name"
const LastRead = "last-read"
const Picture = "picture"
const DefaultProfilePicture = "defaultPicture"
2021-06-24 22:30:46 +00:00
const ShowBlocked = "show-blocked"
const Archived = "archived"
2021-06-24 22:30:46 +00:00
const ProfileTypeV1DefaultPassword = "v1-defaultPassword"
const ProfileTypeV1Password = "v1-userPassword"
// PeerOnline stores state on if the peer believes it is online
const PeerOnline = "peer-online"
// Description is used on server contacts,
const Description = "description"
2021-06-24 22:30:46 +00:00
const StateProfilePane = "state-profile-pane"
const StateSelectedConversation = "state-selected-conversation"
const StateSelectedProfileTime = "state-selected-profile-time"
// Settings
const BlockUnknownPeersSetting = "blockunknownpeers"
const LocaleSetting = "locale"
const ZoomSetting = "zoom"