mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-03 11:05:56 +00:00
included IObservableStatisticsClient under Repository
This commit is contained in:
@@ -108,6 +108,14 @@ namespace Octokit.Reactive
|
||||
/// </remarks>
|
||||
IObservableDeploymentsClient Deployment { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Client for GitHub's Repository Statistics API
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// See the <a href="http://developer.github.com/v3/repos/statistics/">Statistics API documentation</a> for more details
|
||||
///</remarks>
|
||||
IObservableStatisticsClient Statistics { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets all the branches for the specified repository.
|
||||
/// </summary>
|
||||
|
||||
@@ -22,6 +22,7 @@ namespace Octokit.Reactive
|
||||
CommitStatus = new ObservableCommitStatusClient(client);
|
||||
RepoCollaborators = new ObservableRepoCollaboratorsClient(client);
|
||||
Deployment = new ObservableDeploymentsClient(client);
|
||||
Statistics = new ObservableStatisticsClient(client);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -170,6 +171,14 @@ namespace Octokit.Reactive
|
||||
/// </remarks>
|
||||
public IObservableDeploymentsClient Deployment { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// Client for GitHub's Repository Statistics API
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// See the <a href="http://developer.github.com/v3/repos/statistics/">Statistics API documentation</a> for more details
|
||||
///</remarks>
|
||||
public IObservableStatisticsClient Statistics { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets all the branches for the specified repository.
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user