zitadel/internal/authz/repository/eventsourcing/eventstore/iam.go
Livio Amstutz 8dcbbc87ca
fix: update config to commands (and queries) (#1342)
* 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
2021-02-24 11:17:39 +01:00

23 lines
394 B
Go

package eventstore
import (
"context"
"github.com/caos/zitadel/internal/query"
"github.com/caos/zitadel/internal/iam/model"
)
type IamRepo struct {
IAMID string
IAMV2Query *query.Queries
}
func (repo *IamRepo) Health(ctx context.Context) error {
return nil
}
func (repo *IamRepo) IamByID(ctx context.Context) (*model.IAM, error) {
return repo.IAMV2Query.IAMByID(ctx, repo.IAMID)
}