mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 03:24:26 +00:00
dd5e4acd24
* start sub * start implement subsciptions * start subscription * implementation for member done * admin done * fix: tests * extend handlers * prepary notification * no errors in adminapi * changed current sequence in all packages * ignore mocks * works * subscriptions as singleton * tests * refactor: rename function scope var
31 lines
908 B
Go
31 lines
908 B
Go
package view
|
|
|
|
import (
|
|
"github.com/caos/zitadel/internal/eventstore/models"
|
|
"github.com/caos/zitadel/internal/view/repository"
|
|
)
|
|
|
|
const (
|
|
notificationTable = "notification.notifications"
|
|
)
|
|
|
|
func (v *View) GetLatestNotificationSequence(aggregateType string) (*repository.CurrentSequence, error) {
|
|
return v.latestSequence(notificationTable, aggregateType)
|
|
}
|
|
|
|
func (v *View) ProcessedNotificationSequence(event *models.Event) error {
|
|
return v.saveCurrentSequence(notificationTable, event)
|
|
}
|
|
|
|
func (v *View) UpdateNotificationSpoolerRunTimestamp() error {
|
|
return v.updateSpoolerRunSequence(notificationTable)
|
|
}
|
|
|
|
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)
|
|
}
|