implementation for reactive repo collab client

This commit is contained in:
Haroon
2013-11-14 23:02:14 +00:00
parent 09be7c0710
commit f6b647ee3c
4 changed files with 87 additions and 2 deletions
+1 -2
View File
@@ -37,8 +37,7 @@ namespace Octokit
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
Ensure.ArgumentNotNullOrEmptyString(repo, "repo");
var endpoint = "repos/{0}/{1}/collaborators".FormatUri(owner, repo);
var endpoint = ApiUrls.RepoCollaborators(owner, repo);
return ApiConnection.GetAll<User>(endpoint);
}