github.com/status-im/status-go@v1.1.0/services/local-notifications/types.go (about)

     1  package localnotifications
     2  
     3  const (
     4  	CategoryTransaction            PushCategory = "transaction"
     5  	CategoryMessage                PushCategory = "newMessage"
     6  	CategoryGroupInvite            PushCategory = "groupInvite"
     7  	CategoryCommunityRequestToJoin              = "communityRequestToJoin"
     8  	CategoryCommunityJoined                     = "communityJoined"
     9  
    10  	TypeTransaction NotificationType = "transaction"
    11  	TypeMessage     NotificationType = "message"
    12  )