Browse Source

Add URL and HTMLURL to Issue

Signed-off-by: Ondrej Kupka <ondra.cap@gmail.com>
Ondrej Kupka 12 years ago
parent
commit
7eb3de4628
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      github/issues.go

+ 2
- 0
github/issues.go View File

@ -31,6 +31,8 @@ type Issue struct {
ClosedAt *time.Time `json:"closed_at,omitempty"` ClosedAt *time.Time `json:"closed_at,omitempty"`
CreatedAt *time.Time `json:"created_at,omitempty"` CreatedAt *time.Time `json:"created_at,omitempty"`
UpdatedAt *time.Time `json:"updated_at,omitempty"` UpdatedAt *time.Time `json:"updated_at,omitempty"`
URL *string `json:"url,omitempty"`
HTMLURL *string `json:"html_url,omitempty"`
// TODO(willnorris): milestone // TODO(willnorris): milestone
} }


Loading…
Cancel
Save