mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-23 07:35:25 +00:00
[WIP] Add new Project API Preview (#1480)
Add Projects API client (preview)
This commit is contained in:
committed by
Ryan Gribble
parent
fc5bc947aa
commit
329ef960ed
@@ -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; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user