mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-19 21:55:12 +00:00
Unit tests for observable repo deploy keys client
This commit is contained in:
@@ -26,6 +26,7 @@ namespace Octokit.Reactive
|
||||
PullRequest = new ObservablePullRequestsClient(client);
|
||||
RepositoryComments = new ObservableRepositoryCommentsClient(client);
|
||||
Commits = new ObservableRepositoryCommitsClient(client);
|
||||
DeployKeys = new ObservableRepositoryDeployKeysClient(client);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -365,5 +366,13 @@ namespace Octokit.Reactive
|
||||
/// See the <a href="http://developer.github.com/v3/pulls/">Pull Requests API documentation</a> for more details
|
||||
/// </remarks>
|
||||
public IObservablePullRequestsClient PullRequest { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// Client for managing deploy keys
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// See the <a href="https://developer.github.com/v3/repos/keys/">Repository Deploy Keys API documentation</a> for more information.
|
||||
/// </remarks>
|
||||
public IObservableRepositoryDeployKeysClient DeployKeys { get; private set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user