fixes #6 subaspects removed from aspects struct

This commit is contained in:
Andreas Schröpfer
2021-03-01 11:57:07 +01:00
parent d310fdd2b3
commit 9d9ca6bebb

View File

@@ -77,14 +77,13 @@ type Topic struct {
}
type Aspect struct {
Points int `json:"points"`
MaxPoints float64 `json:"maxPoints"`
ID int `json:"id,omitempty"`
ShortName string `json:"shortName"`
Name string `json:"name"`
Estimations int `json:"estimations"`
Weight float64 `json:"weight"`
IsWeightSelectedByUser bool `json:"isWeightSelectedByUser"`
Aspects []Aspect `json:"aspects"`
IsPositive bool `json:"isPositive"`
Points int `json:"points"`
MaxPoints float64 `json:"maxPoints"`
ID int `json:"id,omitempty"`
ShortName string `json:"shortName"`
Name string `json:"name"`
Estimations int `json:"estimations"`
Weight float64 `json:"weight"`
IsWeightSelectedByUser bool `json:"isWeightSelectedByUser"`
IsPositive bool `json:"isPositive"`
}