Skip to content

Commit b529434

Browse files
author
Hubot
committed
Sync changes from upstream repository
1 parent 90cf551 commit b529434

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

lib/responses/orgs.rb

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,17 @@ module GitHub
22
module Resources
33
module Responses
44
ORG ||= {
5-
"login" => "github",
6-
"id" => 1,
7-
"url" => "https://api.github.com/orgs/github",
8-
"avatar_url" => "https://github.com/images/error/octocat_happy.gif",
9-
"description" => "A great organization"
5+
"login" => "github",
6+
"id" => 1,
7+
"url" => "https://api.github.com/orgs/github",
8+
"repos_url" => "https://api.github.com/orgs/github/repos",
9+
"events_url" => "https://api.github.com/orgs/github/events",
10+
"hooks_url" => "https://api.github.com/orgs/github/hooks",
11+
"issues_url" => "https://api.github.com/orgs/github/issues",
12+
"members_url" => "https://api.github.com/orgs/github/members{/member}",
13+
"public_members_url" => "https://api.github.com/orgs/github/public_members{/member}",
14+
"avatar_url" => "https://github.com/images/error/octocat_happy.gif",
15+
"description" => "A great organization"
1016
}
1117

1218
FULL_ORG ||= ORG.merge({

0 commit comments

Comments
 (0)