mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
265b491696
* fix: fix remove policies in spoolers * fix: reread of token by id * fix: update oidc package * fix: possible nil pointer on token split Co-authored-by: Livio Amstutz <livio.a@gmail.com>
14 lines
452 B
Go
14 lines
452 B
Go
package repository
|
|
|
|
import (
|
|
"context"
|
|
usr_model "github.com/caos/zitadel/internal/user/model"
|
|
"time"
|
|
)
|
|
|
|
type TokenRepository interface {
|
|
CreateToken(ctx context.Context, agentID, applicationID, userID string, audience, scopes []string, lifetime time.Duration) (*usr_model.Token, error)
|
|
IsTokenValid(ctx context.Context, userID, tokenID string) (bool, error)
|
|
TokenByID(ctx context.Context, userID, tokenID string) (*usr_model.TokenView, error)
|
|
}
|