We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1f5747 commit 27ac901Copy full SHA for 27ac901
pkg/cmd/registry/list/list.go
@@ -27,7 +27,6 @@ import (
27
type RegistryRow struct {
28
ID string `json:"id" header:"ID"`
29
Name string `json:"name" header:"Name"`
30
- URL string `json:"registryUrl" header:"Registry URL"`
31
Owner string `json:"owner" header:"Owner"`
32
Status string `json:"status" header:"Status"`
33
}
@@ -137,7 +136,6 @@ func mapResponseItemsToRows(registries *[]srsmgmtv1.RegistryRest) []RegistryRow
137
136
row := RegistryRow{
138
ID: fmt.Sprint(k.Id),
139
Name: k.GetName(),
140
- URL: k.GetRegistryUrl(),
141
Status: string(k.GetStatus()),
142
Owner: k.GetOwner(),
143
0 commit comments