We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67ab105 commit 7674766Copy full SHA for 7674766
lib/responses/reactions.rb
@@ -4,19 +4,20 @@ module GitHub
4
module Resources
5
module Responses
6
REACTION ||= {
7
- "id": 1,
+ "id" => 1,
8
"user" => USER,
9
- "content": "heart"
+ "content" => "heart",
10
+ "created_at" => "2016-05-20T20:09:31Z"
11
}
12
13
REACTION_SUMMARY ||= {
- "total_count": 5,
14
- "+1": 3,
15
- "-1": 1,
16
- "laugh": 0,
17
- "confused": 0,
18
- "heart": 1,
19
- "hooray": 0
+ "total_count" => 5,
+ "+1" => 3,
+ "-1" => 1,
+ "laugh" => 0,
+ "confused" => 0,
+ "heart" => 1,
20
+ "hooray" => 0
21
22
end
23
0 commit comments