mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 03:24:26 +00:00
1305c14e49
* feat: handle instanceID in projections * rename functions * fix key lock * fix import
15 lines
354 B
Go
15 lines
354 B
Go
package repository
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/caos/zitadel/internal/view/model"
|
|
)
|
|
|
|
type AdministratorRepository interface {
|
|
GetFailedEvents(context.Context) ([]*model.FailedEvent, error)
|
|
RemoveFailedEvent(context.Context, *model.FailedEvent) error
|
|
GetViews() ([]*model.View, error)
|
|
ClearView(ctx context.Context, db, viewName string) error
|
|
}
|