Index: golden/go/ignore/ignorestore.go |
diff --git a/golden/go/ignore/ignorestore.go b/golden/go/ignore/ignorestore.go |
index 124c2e8a12a37365100ab109f5b9907f9d81ed94..605ef8bdec43044d5df2caf2d29aa679bba0246f 100644 |
--- a/golden/go/ignore/ignorestore.go |
+++ b/golden/go/ignore/ignorestore.go |
@@ -40,13 +40,14 @@ type IgnoreStore interface { |
// IgnoreRule is the GUI struct for dealing with Ignore rules. |
type IgnoreRule struct { |
- ID int `json:"id"` |
- Name string `json:"name"` |
- UpdatedBy string `json:"updatedBy"` |
- Expires time.Time `json:"expires"` |
- Query string `json:"query"` |
- Note string `json:"note"` |
- Count int `json:"count"` |
+ ID int `json:"id"` |
+ Name string `json:"name"` |
+ UpdatedBy string `json:"updatedBy"` |
+ Expires time.Time `json:"expires"` |
+ Query string `json:"query"` |
+ Note string `json:"note"` |
+ Count int `json:"count"` |
+ ExclusiveCount int `json:"exclusiveCount"` |
} |
// ToQuery makes a slice of url.Values from the given slice of IngoreRules. |