mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-14 11:58:02 +00:00
17 lines
408 B
Go
17 lines
408 B
Go
|
package query
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"github.com/caos/zitadel/internal/v2/domain"
|
||
|
)
|
||
|
|
||
|
func (r *QuerySide) 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
|
||
|
}
|