mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
1305c14e49
* feat: handle instanceID in projections * rename functions * fix key lock * fix import
18 lines
466 B
Go
18 lines
466 B
Go
package view
|
|
|
|
import (
|
|
"github.com/caos/zitadel/internal/view/repository"
|
|
)
|
|
|
|
const (
|
|
errTable = "auth.failed_events"
|
|
)
|
|
|
|
func (v *View) saveFailedEvent(failedEvent *repository.FailedEvent) error {
|
|
return repository.SaveFailedEvent(v.Db, errTable, failedEvent)
|
|
}
|
|
|
|
func (v *View) latestFailedEvent(viewName, instanceID string, sequence uint64) (*repository.FailedEvent, error) {
|
|
return repository.LatestFailedEvent(v.Db, errTable, viewName, instanceID, sequence)
|
|
}
|