mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
320679467b
* feat: change login to command side * feat: change login to command side * fix: fix push on user * feat: user command side * feat: sign out * feat: command side login * feat: command side login * feat: fix register user * feat: fix register user * feat: fix web auth n events * feat: add machine keys * feat: send codes * feat: move authrequest to domain * feat: move authrequest to domain * feat: webauthn working * feat: external users * feat: external users login * feat: notify users * fix: tests * feat: cascade remove user grants on project remove * fix: webauthn * fix: pr requests * fix: register human with member * fix: fix bugs * fix: fix bugs
17 lines
532 B
Go
17 lines
532 B
Go
package repository
|
|
|
|
import (
|
|
"context"
|
|
"github.com/caos/zitadel/internal/v2/domain"
|
|
)
|
|
|
|
type AuthRequestCache interface {
|
|
Health(ctx context.Context) error
|
|
|
|
GetAuthRequestByID(ctx context.Context, id string) (*domain.AuthRequest, error)
|
|
GetAuthRequestByCode(ctx context.Context, code string) (*domain.AuthRequest, error)
|
|
SaveAuthRequest(ctx context.Context, request *domain.AuthRequest) error
|
|
UpdateAuthRequest(ctx context.Context, request *domain.AuthRequest) error
|
|
DeleteAuthRequest(ctx context.Context, id string) error
|
|
}
|