mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
fa9f581d56
* chore: move to new org * logging * fix: org rename caos -> zitadel Co-authored-by: adlerhurst <silvan.reusser@gmail.com>
25 lines
743 B
Go
25 lines
743 B
Go
package admin
|
|
|
|
import (
|
|
"context"
|
|
|
|
"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) {
|
|
currentSequences, err := s.query.SearchCurrentSequences(ctx, new(query.CurrentSequencesSearchQueries))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
convertedCurrentSequences := CurrentSequencesToPb(currentSequences)
|
|
views, err := s.administrator.GetViews()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
convertedViews := ViewsToPb(views)
|
|
|
|
convertedCurrentSequences = append(convertedCurrentSequences, convertedViews...)
|
|
return &admin_pb.ListViewsResponse{Result: convertedCurrentSequences}, nil
|
|
}
|