mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
8dcbbc87ca
* fix: adaot config to commands (and queries) * remove dependency on vv2 in v1 * add queries user to operator * set password for queries on tests * set password for queries on tests * fix config
17 lines
403 B
Go
17 lines
403 B
Go
package query
|
|
|
|
import (
|
|
"context"
|
|
"github.com/caos/zitadel/internal/domain"
|
|
)
|
|
|
|
func (r *Queries) DefaultIDPConfigByID(ctx context.Context, idpConfigID string) (*domain.IDPConfigView, error) {
|
|
idpConfig := NewIAMIDPConfigReadModel(r.iamID, idpConfigID)
|
|
err := r.eventstore.FilterToQueryReducer(ctx, idpConfig)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return readModelToIDPConfigView(idpConfig), nil
|
|
}
|