mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 19:44:21 +00:00
423b86a03b
* feat: reread events * feat: sequence and timestamo on search requests * feat: sequence and timestamo on search requests * fix: better naming * fix: log errors * fix: read sequence before search request
26 lines
708 B
Go
26 lines
708 B
Go
package view
|
|
|
|
import (
|
|
"github.com/caos/zitadel/internal/view/repository"
|
|
)
|
|
|
|
const (
|
|
notificationTable = "notification.notifications"
|
|
)
|
|
|
|
func (v *View) GetLatestNotificationSequence() (*repository.CurrentSequence, error) {
|
|
return v.latestSequence(notificationTable)
|
|
}
|
|
|
|
func (v *View) ProcessedNotificationSequence(eventSequence uint64) error {
|
|
return v.saveCurrentSequence(notificationTable, eventSequence)
|
|
}
|
|
|
|
func (v *View) GetLatestNotificationFailedEvent(sequence uint64) (*repository.FailedEvent, error) {
|
|
return v.latestFailedEvent(notificationTable, sequence)
|
|
}
|
|
|
|
func (v *View) ProcessedNotificationFailedEvent(failedEvent *repository.FailedEvent) error {
|
|
return v.saveFailedEvent(failedEvent)
|
|
}
|