mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
29441ce4b6
* fix: filter failed events and current sequence correctly * fix failed events sorting column * feat: save last occurrence of failed event * fix failedEvents query and update sql statements * change sql statement to only create index * fix linting * fix linting * Update internal/query/failed_events.go Co-authored-by: Silvan <silvan.reusser@gmail.com> * update job name on test-docs to match the one from test-code Co-authored-by: Silvan <silvan.reusser@gmail.com>
33 lines
1.0 KiB
Go
33 lines
1.0 KiB
Go
package admin
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/zitadel/zitadel/internal/api/authz"
|
|
"github.com/zitadel/zitadel/internal/query"
|
|
admin_pb "github.com/zitadel/zitadel/pkg/grpc/admin"
|
|
)
|
|
|
|
func (s *Server) ListViews(ctx context.Context, _ *admin_pb.ListViewsRequest) (*admin_pb.ListViewsResponse, error) {
|
|
instanceID := authz.GetInstance(ctx).InstanceID()
|
|
instanceIDQuery, err := query.NewCurrentSequencesInstanceIDSearchQuery(instanceID)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
currentSequences, err := s.query.SearchCurrentSequences(ctx, &query.CurrentSequencesSearchQueries{
|
|
Queries: []query.SearchQuery{instanceIDQuery},
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
convertedCurrentSequences := CurrentSequencesToPb(s.database, currentSequences)
|
|
views, err := s.administrator.GetViews(instanceID)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
convertedViews := ViewsToPb(views)
|
|
|
|
convertedCurrentSequences = append(convertedCurrentSequences, convertedViews...)
|
|
return &admin_pb.ListViewsResponse{Result: convertedCurrentSequences}, nil
|
|
}
|