mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-14 11:58:02 +00:00
26 lines
690 B
Go
26 lines
690 B
Go
|
package view
|
||
|
|
||
|
import (
|
||
|
global_view "github.com/caos/zitadel/internal/view"
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
notificationTable = "notification.notifications"
|
||
|
)
|
||
|
|
||
|
func (v *View) GetLatestNotificationSequence() (uint64, error) {
|
||
|
return v.latestSequence(notificationTable)
|
||
|
}
|
||
|
|
||
|
func (v *View) ProcessedNotificationSequence(eventSequence uint64) error {
|
||
|
return v.saveCurrentSequence(notificationTable, eventSequence)
|
||
|
}
|
||
|
|
||
|
func (v *View) GetLatestNotificationFailedEvent(sequence uint64) (*global_view.FailedEvent, error) {
|
||
|
return v.latestFailedEvent(notificationTable, sequence)
|
||
|
}
|
||
|
|
||
|
func (v *View) ProcessedNotificationFailedEvent(failedEvent *global_view.FailedEvent) error {
|
||
|
return v.saveFailedEvent(failedEvent)
|
||
|
}
|