这是indexloc提供的服务,不要输入任何密码
Skip to content

Fix microfrontends routeObservabilityToThisProject #279

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 5, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions client/microfrontend_group_membership.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import (

type MicrofrontendGroupMembership struct {
MicrofrontendGroupID string `json:"microfrontendsGroupId"`
IsDefaultApp bool `json:"isDefaultApp"`
DefaultRoute string `json:"defaultRoute"`
RouteObservabilityToThisProject bool `json:"routeObservabilityToThisProject"`
IsDefaultApp bool `json:"isDefaultApp,omitempty"`
DefaultRoute string `json:"defaultRoute,omitempty"`
RouteObservabilityToThisProject bool `json:"routeObservabilityToThisProject,omitempty"`
ProjectID string `json:"projectId"`
Enabled bool `json:"enabled"`
TeamID string `json:"team_id"`
Expand All @@ -20,9 +20,9 @@ type MicrofrontendGroupMembership struct {
type MicrofrontendGroupMembershipResponseAPI struct {
GroupIds []string `json:"groupIds"`
Enabled bool `json:"enabled"`
IsDefaultApp bool `json:"isDefaultApp"`
DefaultRoute string `json:"defaultRoute"`
RouteObservabilityToThisProject bool `json:"routeObservabilityToThisProject"`
IsDefaultApp bool `json:"isDefaultApp,omitempty"`
DefaultRoute string `json:"defaultRoute,omitempty"`
RouteObservabilityToThisProject bool `json:"routeObservabilityToThisProject,omitempty"`
TeamID string `json:"team_id"`
UpdatedAt int `json:"updatedAt"`
}
Expand Down