Skip to content

Commit 5ff996c

Browse files
committed
update unmarshal.go
1 parent 15ac92e commit 5ff996c

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

pkg/model/platform/unmarshal.go

-3
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ type ApplicationJSON struct {
2222
References []BaseEntity `json:"references"`
2323
// Relations between parents and child applications in tree
2424
AppsRelations *AppsRelations `json:"appsRelations"`
25-
// History of the application
26-
History *GitOpsSlice `json:"history"`
2725
// Version of the entity (generation)
2826
Version *int `json:"version"`
2927
// Is this the latest version of this entity
@@ -76,7 +74,6 @@ func (a *Application) UnmarshalJSON(data []byte) error {
7674
a.ReferencedBy = aj.ReferencedBy
7775
a.References = aj.References
7876
a.AppsRelations = aj.AppsRelations
79-
a.History = aj.History
8077
a.Version = aj.Version
8178
a.Latest = aj.Latest
8279
a.Source = aj.Source

0 commit comments

Comments
 (0)