mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-18 13:57:32 +00:00
12 lines
251 B
Go
12 lines
251 B
Go
|
package repository
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"github.com/caos/zitadel/internal/api/auth"
|
||
|
)
|
||
|
|
||
|
type UserGrantRepository interface {
|
||
|
ResolveGrants(ctx context.Context) (*auth.Grant, error)
|
||
|
SearchMyZitadelPermissions(ctx context.Context) ([]string, error)
|
||
|
}
|