[WIP] Add new Project API Preview (#1480)

Add Projects API client (preview)
This commit is contained in:
Martin Scholz
2017-07-23 00:18:34 +02:00
committed by Ryan Gribble
parent fc5bc947aa
commit 329ef960ed
45 changed files with 5821 additions and 2 deletions

View File

@@ -37,6 +37,7 @@ namespace Octokit.Reactive
Page = new ObservableRepositoryPagesClient(client);
Invitation = new ObservableRepositoryInvitationsClient(client);
Traffic = new ObservableRepositoryTrafficClient(client);
Project = new ObservableProjectsClient(client);
}
/// <summary>
@@ -745,5 +746,13 @@ namespace Octokit.Reactive
/// Refer to the API documentation for more information: https://developer.github.com/v3/repos/traffic/
/// </remarks>
public IObservableRepositoryTrafficClient Traffic { get; private set; }
/// <summary>
/// Access GitHub's Repository Projects API
/// </summary>
/// <remarks>
/// Refer to the API documentation for more information: https://developer.github.com/v3/repos/projects/
/// </remarks>
public IObservableProjectsClient Project { get; private set; }
}
}