Skip to content

Commit

Permalink
add missing xml params
Browse files Browse the repository at this point in the history
  • Loading branch information
martinscholz83 committed Jul 1, 2016
1 parent cd95700 commit aba8653
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ public interface IObservableRepositoryInvitationsClient
/// See the <a href="https://developer.github.com/v3/repos/invitations/#update-a-repository-invitation">API documentation</a> for more information.
/// </remarks>
/// <param name="repositoryId">The id ot the repository</param>
/// <param name="invitationId">The id of the invitation</param>
/// <param name="invitationId">The id of the invitation</param>
/// <param name="permissions">The permission for the collsborator</param>
IObservable<RepositoryInvitation> Edit(int repositoryId, int invitationId, InvitationUpdate permissions);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ public IObservable<Unit> Delete(int repositoryId, int invitationId)
/// See the <a href="https://developer.github.com/v3/repos/invitations/#update-a-repository-invitation">API documentation</a> for more information.
/// </remarks>
/// <param name="repositoryId">The id ot the repository</param>
/// <param name="invitationId">The id of the invitation</param>
/// <param name="invitationId">The id of the invitation</param>
/// <param name="permissions">The permission for the collsborator</param>
public IObservable<RepositoryInvitation> Edit(int repositoryId, int invitationId, InvitationUpdate permissions)
{
return _client.Edit(repositoryId, invitationId, permissions).ToObservable();
Expand Down
1 change: 1 addition & 0 deletions Octokit/Clients/IRepositoryInvitationsClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ public interface IRepositoryInvitationsClient
/// </remarks>
/// <param name="repositoryId">The id ot the repository</param>
/// <param name="invitationId">The id of the invitation</param>
/// <param name="permissions">The permission for the collsborator</param>
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
/// <returns><see cref="Task"/></returns>
Task<RepositoryInvitation> Edit(int repositoryId, int invitationId, InvitationUpdate permissions);
Expand Down
1 change: 1 addition & 0 deletions Octokit/Clients/RepositoryInvitationsClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ public Task<IReadOnlyList<RepositoryInvitation>> GetAllForRepository(int id)
/// </remarks>
/// <param name="repositoryId">The id ot the repository</param>
/// <param name="invitationId">The id of the invitation</param>
/// <param name="permissions">The permission for the collsborator</param>
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
/// <returns><see cref="Task"/></returns>
public Task<RepositoryInvitation> Edit(int repositoryId, int invitationId, InvitationUpdate permissions)
Expand Down
1 change: 1 addition & 0 deletions Octokit/Http/ApiConnection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -391,6 +391,7 @@ public Task Patch(Uri uri)
/// Updates the API resource at the specified URI.
/// </summary>
/// <param name="uri">URI of the API resource to patch</param>
/// <param name="accepts">Accept header to use for the API request</param>
/// <returns>A <see cref="Task"/> for the request's execution.</returns>
public Task Patch(Uri uri, string accepts)
{
Expand Down
1 change: 1 addition & 0 deletions Octokit/Http/Connection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -389,6 +389,7 @@ public async Task<HttpStatusCode> Patch(Uri uri)
/// Performs an asynchronous HTTP PATCH request.
/// </summary>
/// <param name="uri">URI endpoint to send request to</param>
/// <param name="accepts">Specifies accept response media type</param>
/// <returns><seealso cref="IResponse"/> representing the received HTTP response</returns>
public async Task<HttpStatusCode> Patch(Uri uri, string accepts)
{
Expand Down

0 comments on commit aba8653

Please sign in to comment.