mirror of
https://github.com/zitadel/zitadel.git
synced 2025-01-10 13:33:41 +00:00
e163ea75cd
* fix: show clientid * Update system-defaults.yaml * fix: field name for clientId app key json * fix: mfa verify otp * fix: mfa verify otp (show error correctly) * fix: nil pointer in login.html * fix: check clientID clientSecret for apis correctly (and add missing i18n) * update oidc pkg Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com> Co-authored-by: Livio Amstutz <livio.a@gmail.com>
13 lines
305 B
Go
13 lines
305 B
Go
package repository
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/caos/zitadel/internal/project/model"
|
|
)
|
|
|
|
type ApplicationRepository interface {
|
|
ApplicationByClientID(ctx context.Context, clientID string) (*model.ApplicationView, error)
|
|
AuthorizeClientIDSecret(ctx context.Context, clientID, secret string) error
|
|
}
|