prepping repo collaborators client

This commit is contained in:
Haroon
2013-11-13 11:50:17 +00:00
parent 790ba0888f
commit 62a4f6c1e3
5 changed files with 90 additions and 0 deletions
+9
View File
@@ -21,6 +21,7 @@ namespace Octokit
public RepositoriesClient(IApiConnection apiConnection) : base(apiConnection)
{
CommitStatus = new CommitStatusClient(apiConnection);
RepoCollaboratorsClient = new RepoCollaboratorsClient(apiConnection);
}
/// <summary>
@@ -194,5 +195,13 @@ namespace Octokit
/// that announced this feature.
/// </remarks>
public ICommitStatusClient CommitStatus { get; private set; }
/// <summary>
/// A client for GitHub's Repo Collaborators.
/// </summary>
/// <remarks>
/// See the <a href="http://developer.github.com/v3/repos/collaborators/">Collaborators API documentation</a> for more details
/// </remarks>
public IRepoCollaboratorsClient RepoCollaboratorsClient { get; private set; }
}
}