mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
31 lines
789 B
Go
31 lines
789 B
Go
|
package query
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"github.com/zitadel/zitadel/internal/domain"
|
||
|
)
|
||
|
|
||
|
type InstanceFeatures struct {
|
||
|
Details *domain.ObjectDetails
|
||
|
LoginDefaultOrg FeatureSource[bool]
|
||
|
TriggerIntrospectionProjections FeatureSource[bool]
|
||
|
LegacyIntrospection FeatureSource[bool]
|
||
|
}
|
||
|
|
||
|
func (q *Queries) GetInstanceFeatures(ctx context.Context, cascade bool) (_ *InstanceFeatures, err error) {
|
||
|
var system *SystemFeatures
|
||
|
if cascade {
|
||
|
system, err = q.GetSystemFeatures(ctx)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
}
|
||
|
m := NewInstanceFeaturesReadModel(ctx, system)
|
||
|
if err = q.eventstore.FilterToQueryReducer(ctx, m); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
m.instance.Details = readModelToObjectDetails(m.ReadModel)
|
||
|
return m.instance, nil
|
||
|
}
|