Passport/pkg/internal/models/notifications.go

38 lines
958 B
Go
Raw Normal View History

2024-02-01 07:08:40 +00:00
package models
import (
2024-06-02 12:15:04 +00:00
"gorm.io/datatypes"
)
2024-02-01 07:08:40 +00:00
type Notification struct {
BaseModel
2024-07-15 16:05:09 +00:00
Topic string `json:"topic"`
Title string `json:"title"`
Subtitle *string `json:"subtitle"`
Body string `json:"body"`
Metadata datatypes.JSONMap `json:"metadata"`
Avatar *string `json:"avatar"`
Picture *string `json:"picture"`
2024-07-15 16:05:09 +00:00
AccountID uint `json:"account_id"`
SenderID *uint `json:"sender_id"`
IsRealtime bool `json:"is_realtime" gorm:"-"`
IsForcePush bool `json:"is_force_push" gorm:"-"`
}
2024-02-07 15:15:16 +00:00
const (
2024-06-06 14:48:43 +00:00
NotifySubscriberFirebase = "firebase"
NotifySubscriberAPNs = "apple"
2024-02-07 15:15:16 +00:00
)
type NotificationSubscriber struct {
BaseModel
UserAgent string `json:"user_agent"`
Provider string `json:"provider"`
DeviceID string `json:"device_id" gorm:"uniqueIndex"`
DeviceToken string `json:"device_token"`
AccountID uint `json:"account_id"`
2024-02-07 15:15:16 +00:00
}