mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-06 04:52:37 +00:00
fix: handle sequence correctly in subscription (#1209)
This commit is contained in:
@@ -9,8 +9,8 @@ const (
|
||||
notificationTable = "notification.notifications"
|
||||
)
|
||||
|
||||
func (v *View) GetLatestNotificationSequence(aggregateType string) (*repository.CurrentSequence, error) {
|
||||
return v.latestSequence(notificationTable, aggregateType)
|
||||
func (v *View) GetLatestNotificationSequence() (*repository.CurrentSequence, error) {
|
||||
return v.latestSequence(notificationTable)
|
||||
}
|
||||
|
||||
func (v *View) ProcessedNotificationSequence(event *models.Event) error {
|
||||
|
||||
Reference in New Issue
Block a user