This commit is contained in:
aedampir@gmail.com
2016-07-17 16:29:32 +07:00
parent b47b05489e
commit 44b0f4039d
167 changed files with 999 additions and 999 deletions
@@ -46,7 +46,7 @@ namespace Octokit
/// <remarks>
/// See the <a href="https://developer.github.com/v3/repos/keys/#get"> API documentation</a> for more information.
/// </remarks>
/// <param name="repositoryId">The ID of the repository.</param>
/// <param name="repositoryId">The Id of the repository.</param>
/// <param name="number">The id of the deploy key.</param>
public Task<DeployKey> Get(int repositoryId, int number)
{
@@ -75,7 +75,7 @@ namespace Octokit
/// <remarks>
/// See the <a href="https://developer.github.com/v3/repos/keys/#list"> API documentation</a> for more information.
/// </remarks>
/// <param name="repositoryId">The ID of the repository.</param>
/// <param name="repositoryId">The Id of the repository.</param>
public Task<IReadOnlyList<DeployKey>> GetAll(int repositoryId)
{
return GetAll(repositoryId, ApiOptions.None);
@@ -105,7 +105,7 @@ namespace Octokit
/// <remarks>
/// See the <a href="https://developer.github.com/v3/repos/keys/#list"> API documentation</a> for more information.
/// </remarks>
/// <param name="repositoryId">The ID of the repository.</param>
/// <param name="repositoryId">The Id of the repository.</param>
/// <param name="options">Options for changing the API response</param>
public Task<IReadOnlyList<DeployKey>> GetAll(int repositoryId, ApiOptions options)
{
@@ -144,7 +144,7 @@ namespace Octokit
/// <remarks>
/// See the <a href="https://developer.github.com/v3/repos/keys/#create"> API documentation</a> for more information.
/// </remarks>
/// <param name="repositoryId">The ID of the repository.</param>
/// <param name="repositoryId">The Id of the repository.</param>
/// <param name="newDeployKey">The deploy key to create for the repository.</param>
public Task<DeployKey> Create(int repositoryId, NewDeployKey newDeployKey)
{
@@ -182,7 +182,7 @@ namespace Octokit
/// <remarks>
/// See the <a href="https://developer.github.com/v3/repos/keys/#delete"> API documentation</a> for more information.
/// </remarks>
/// <param name="repositoryId">The ID of the repository.</param>
/// <param name="repositoryId">The Id of the repository.</param>
/// <param name="number">The id of the deploy key to delete.</param>
public Task Delete(int repositoryId, int number)
{