mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
3473156c7e
* fix: move queries to query package * fix(auth): switch project role requests to query pkg * refactor: delete unused project role code * remove repo * implement sql queries * fix(database): oidc config change type to int2 * fix(queries): implement app queries * refactor: simplify code * fix: correct app query * Update app.go * fix token check * fix mock * test: app prepares * test: oidc compliance * test: OIDCOriginAllowList * fix: converter * resolve unsupported oidc version Co-authored-by: Livio Amstutz <livio.a@gmail.com>
10 lines
161 B
Go
10 lines
161 B
Go
package repository
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type ApplicationRepository interface {
|
|
AuthorizeClientIDSecret(ctx context.Context, clientID, secret string) error
|
|
}
|