mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
initial rename refactoring
This commit is contained in:
@@ -76,33 +76,36 @@ type GetAllAlertNotificationsQuery struct {
|
||||
Result []*AlertNotification
|
||||
}
|
||||
|
||||
type AlertNotificationJournal struct {
|
||||
type AlertNotificationState struct {
|
||||
Id int64
|
||||
OrgId int64
|
||||
AlertId int64
|
||||
NotifierId int64
|
||||
SentAt int64
|
||||
Success bool
|
||||
State string
|
||||
Version int64
|
||||
}
|
||||
|
||||
type RecordNotificationJournalCommand struct {
|
||||
type UpdateAlertNotificationStateCommand struct {
|
||||
OrgId int64
|
||||
AlertId int64
|
||||
NotifierId int64
|
||||
SentAt int64
|
||||
Success bool
|
||||
State bool
|
||||
}
|
||||
|
||||
type GetLatestNotificationQuery struct {
|
||||
type GetNotificationStateQuery struct {
|
||||
OrgId int64
|
||||
AlertId int64
|
||||
NotifierId int64
|
||||
|
||||
Result []AlertNotificationJournal
|
||||
Result *AlertNotificationState
|
||||
}
|
||||
|
||||
type CleanNotificationJournalCommand struct {
|
||||
type InsertAlertNotificationCommand struct {
|
||||
OrgId int64
|
||||
AlertId int64
|
||||
NotifierId int64
|
||||
SentAt int64
|
||||
State string
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user