zitadel/internal/auth/repository/repository.go
Livio Amstutz 9ab566fdeb
fix(query): keys (#2755)
* fix: add keys to projections

* change to multiple tables

* query keys

* query keys

* fix race condition

* fix timer reset

* begin tests

* tests

* remove migration

* only send to keyChannel if not nil
2022-01-12 13:22:04 +01:00

19 lines
281 B
Go

package repository
import (
"context"
)
type Repository interface {
Health(context.Context) error
UserRepository
AuthRequestRepository
TokenRepository
ApplicationRepository
UserSessionRepository
UserGrantRepository
OrgRepository
IAMRepository
RefreshTokenRepository
}