mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
ec5020bebc
* begin refresh tokens * refresh tokens * list and revoke refresh tokens * handle remove * tests for refresh tokens * uniqueness and default expiration * rename oidc token methods * cleanup * migration version * Update internal/static/i18n/en.yaml Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com> * fixes * feat: update oidc pkg for refresh tokens Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com>
22 lines
335 B
Go
22 lines
335 B
Go
package repository
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type Repository interface {
|
|
Health(context.Context) error
|
|
UserRepository
|
|
AuthRequestRepository
|
|
TokenRepository
|
|
ApplicationRepository
|
|
ProjectRepository
|
|
KeyRepository
|
|
UserSessionRepository
|
|
UserGrantRepository
|
|
OrgRepository
|
|
IAMRepository
|
|
FeaturesRepository
|
|
RefreshTokenRepository
|
|
}
|