Add ObservableUserGpgKeysClient and fixes to satisfy convention tests

This commit is contained in:
Henrik Andersson
2016-06-05 15:09:13 +10:00
parent 06700b21f5
commit 3ad22b5d9d
13 changed files with 233 additions and 13 deletions

View File

@@ -1,4 +1,5 @@
using System;
using System.Diagnostics.CodeAnalysis;
using System.Reactive.Threading.Tasks;
namespace Octokit.Reactive
@@ -16,6 +17,7 @@ namespace Octokit.Reactive
Followers = new ObservableFollowersClient(client);
Email = new ObservableUserEmailsClient(client);
Keys = new ObservableUserKeysClient(client);
GpgKeys = new ObservableUserGpgKeysClient(client);
Administration = new ObservableUserAdministrationClient(client);
}
@@ -77,6 +79,15 @@ namespace Octokit.Reactive
///</remarks>
public IObservableUserKeysClient Keys { get; private set; }
/// <summary>
/// A client for GitHub's UserUser GPG Keys API.
/// </summary>
/// <remarks>
/// See the <a href="https://developer.github.com/v3/users/gpg_keys/">User GPG Keys documentation</a> for more information.
/// </remarks>
public IObservableUserGpgKeysClient GpgKeys { get; private set; }
/// <summary>
/// A client for GitHub's User Administration API
/// </summary>