grim/youtrack-import

f858379a5b97
Parents 77d62008a2d2
Children 9522bfc87d5e
Remove some unused struct tags. Fixes YI-5
--- a/youtrack/issue.go Wed Jan 15 04:41:04 2020 -0600
+++ b/youtrack/issue.go Wed Jan 15 04:43:10 2020 -0600
@@ -9,25 +9,25 @@
)
type Issue struct {
- Number int `yt:"numberInProject"`
- Summary string `yt:"summary"`
- Description string `yt:"description"`
- Created time.Time `yt:"created"`
- Updated time.Time `yt:"updated"`
- UpdatedBy string `yt:"updaterName"`
- Resolved time.Time `yt:"resolved"`
- Reporter string `yt:"reporter"`
+ Number int
+ Summary string
+ Description string
+ Created time.Time
+ Updated time.Time
+ UpdatedBy string
+ Resolved time.Time
+ Reporter string
Assignee string
- Voters []string `yt:"voterName"`
- Watchers []string `yt:"watcherName"`
- PermittedGroup string `yt:"permittedGroup"`
+ Voters []string
+ Watchers []string
+ PermittedGroup string
Markdown bool
Version string
Subsystem string
- Priority string `yt:"priority"`
- Type string `yt:"type"`
- State string `yt:"state"`
+ Priority string
+ Type string
+ State string
Comments []*Comment
Attachments []*Attachment