Initial hack at supporting Notifications API

This commit is contained in:
Paul Betts
2013-05-22 02:56:53 -04:00
committed by Haacked
parent f7596243b5
commit f4e50c071a
9 changed files with 70 additions and 1 deletions

View File

@@ -36,6 +36,7 @@ namespace Octokit
Connection = connection;
Authorization = new AuthorizationsClient(new ApiConnection(connection));
Miscellaneous = new MiscellaneousClient(connection);
Notification = new NotificationsClient(new ApiConnection(connection));
Organization = new OrganizationsClient(new ApiConnection(connection));
Repository = new RepositoriesClient(new ApiConnection(connection));
Release = new ReleasesClient(new ApiConnection(connection));
@@ -84,5 +85,6 @@ namespace Octokit
public IReleasesClient Release { get; private set; }
public ISshKeysClient SshKey { get; private set; }
public IUsersClient User { get; private set; }
public INotificationsClient Notification { get; private set; }
}
}