mirror of
https://github.com/status-im/status-go.git
synced 2025-01-11 23:25:29 +00:00
13 lines
454 B
Go
13 lines
454 B
Go
package localnotifications
|
|
|
|
const (
|
|
CategoryTransaction PushCategory = "transaction"
|
|
CategoryMessage PushCategory = "newMessage"
|
|
CategoryGroupInvite PushCategory = "groupInvite"
|
|
CategoryCommunityRequestToJoin = "communityRequestToJoin"
|
|
CategoryCommunityJoined = "communityJoined"
|
|
|
|
TypeTransaction NotificationType = "transaction"
|
|
TypeMessage NotificationType = "message"
|
|
)
|