2021-03-31 16:23:45 +00:00
|
|
|
package localnotifications
|
|
|
|
|
|
|
|
const (
|
|
|
|
CategoryTransaction PushCategory = "transaction"
|
|
|
|
CategoryMessage PushCategory = "newMessage"
|
2021-09-27 14:02:25 +00:00
|
|
|
CategoryGroupInvite PushCategory = "groupInvite"
|
2021-03-31 16:23:45 +00:00
|
|
|
CategoryCommunityRequestToJoin = "communityRequestToJoin"
|
|
|
|
|
|
|
|
TypeTransaction NotificationType = "transaction"
|
|
|
|
TypeMessage NotificationType = "message"
|
|
|
|
)
|