15 lines
447 B
Go
15 lines
447 B
Go
package model
|
|
|
|
type NotificationAction string
|
|
|
|
const (
|
|
NACreated NotificationAction = "created"
|
|
NAAssigned NotificationAction = "assigned"
|
|
NAUpdated NotificationAction = "updated"
|
|
NAPending NotificationAction = "pending"
|
|
NADeleted NotificationAction = "deleted"
|
|
NAArchived NotificationAction = "archived"
|
|
NASent NotificationAction = "sent"
|
|
NAPasswordReset NotificationAction = "password_reset"
|
|
)
|