1
0
mirror of https://github.com/rancher/types.git synced 2025-04-27 18:25:05 +00:00

Add description field to feature status

This commit is contained in:
rmweir 2020-03-08 18:03:31 -07:00
parent a9e1176ae1
commit 5295402060

View File

@ -27,6 +27,7 @@ type FeatureSpec struct {
}
type FeatureStatus struct {
Dynamic bool `json:"dynamic"`
Default bool `json:"default"`
Dynamic bool `json:"dynamic"`
Default bool `json:"default"`
Description string `json:"description"`
}