1 parent 3fdd970 commit 6478d09Copy full SHA for 6478d09
2 files changed
content/v3/issues.md
@@ -72,7 +72,7 @@ Name | Type | Description
72
### Response
73
74
<%= headers 200 %>
75
-<%= json :issue %>
+<%= json :full_issue %>
76
77
<div class="alert">
78
<p>
@@ -111,7 +111,7 @@ Name | Type | Description
111
<%= headers 201,
112
:Location =>
113
'https://api.github.com/repos/user/repo/issues/1' %>
114
115
116
## Edit an issue
117
@@ -145,7 +145,7 @@ Name | Type | Description
145
146
147
148
149
150
## Custom media types
151
lib/resources.rb
@@ -729,6 +729,10 @@ def text_html(response, status, head = {})
729
"updated_at" => "2011-04-22T13:33:48Z"
730
}
731
732
+ FULL_ISSUE = ISSUE.merge({
733
+ "closed_by" => USER
734
+ })
735
+
736
ISSUE_COMMENT = {
737
"id" => 1,
738
"url" => "https://api.github.com/repos/octocat/Hello-World/issues/comments/1",
0 commit comments