We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15ac92e commit 5ff996cCopy full SHA for 5ff996c
pkg/model/platform/unmarshal.go
@@ -22,8 +22,6 @@ type ApplicationJSON struct {
22
References []BaseEntity `json:"references"`
23
// Relations between parents and child applications in tree
24
AppsRelations *AppsRelations `json:"appsRelations"`
25
- // History of the application
26
- History *GitOpsSlice `json:"history"`
27
// Version of the entity (generation)
28
Version *int `json:"version"`
29
// Is this the latest version of this entity
@@ -76,7 +74,6 @@ func (a *Application) UnmarshalJSON(data []byte) error {
76
74
a.ReferencedBy = aj.ReferencedBy
77
75
a.References = aj.References
78
a.AppsRelations = aj.AppsRelations
79
- a.History = aj.History
80
a.Version = aj.Version
81
a.Latest = aj.Latest
82
a.Source = aj.Source
0 commit comments