mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-20 14:15:12 +00:00
Fixed broken conventions. Wrote a integrationstests that performs an actual merge between two branches.
This commit is contained in:
@@ -28,6 +28,7 @@ namespace Octokit.Reactive
|
||||
Commits = new ObservableRepositoryCommitsClient(client);
|
||||
DeployKeys = new ObservableRepositoryDeployKeysClient(client);
|
||||
Content = new ObservableRepositoryContentsClient(client);
|
||||
Merging = new ObservableMergingClient(client);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@@ -196,6 +197,15 @@ namespace Octokit.Reactive
|
||||
/// </remarks>
|
||||
public IObservableRepositoryContentsClient Content { get; private set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Client for GitHub's Repository Merging API
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// See the <a href="https://developer.github.com/v3/repos/merging/">Merging API documentation</a> for more details
|
||||
///</remarks>
|
||||
public IObservableMergingClient Merging { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets all the branches for the specified repository.
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user