Add ActivitiesClient to IGithubClient.

This commit is contained in:
pltaylor
2013-11-05 11:40:26 -05:00
parent f8dcf96564
commit dcb0abe156
2 changed files with 3 additions and 0 deletions
+2
View File
@@ -80,6 +80,7 @@ namespace Octokit
Connection = connection;
var apiConnection = new ApiConnection(connection);
Authorization = new AuthorizationsClient(apiConnection);
Event = new ActivitiesClient(apiConnection);
Issue = new IssuesClient(apiConnection);
Miscellaneous = new MiscellaneousClient(connection);
Notification = new NotificationsClient(apiConnection);
@@ -126,6 +127,7 @@ namespace Octokit
public IConnection Connection { get; private set; }
public IAuthorizationsClient Authorization { get; private set; }
public IActivitiesClient Event { get; set; }
public IIssuesClient Issue { get; private set; }
public IMiscellaneousClient Miscellaneous { get; private set; }
public IOrganizationsClient Organization { get; private set; }
+1
View File
@@ -7,6 +7,7 @@ namespace Octokit
IConnection Connection { get; }
IAuthorizationsClient Authorization { get; }
IActivitiesClient Event { get; }
IIssuesClient Issue { get; }
IMiscellaneousClient Miscellaneous { get; }
IOrganizationsClient Organization { get; }