lib/octokit/client/repository_invitations.rb in octokit-4.9.0 vs lib/octokit/client/repository_invitations.rb in octokit-4.10.0

- old
+ new

@@ -13,11 +13,10 @@ # @param repo [Integer, String, Hash, Repository] A GitHub repository # @param user [String] User GitHub username to add # @return [Sawyer::Resource] The repository invitation # @see https://developer.github.com/v3/repos/invitations/#invite-a-user-to-a-repository def invite_user_to_repository(repo, user, options = {}) - options = ensure_api_media_type(:repository_invitations, options) put "#{Repository.path repo}/collaborators/#{user}", options end alias invite_user_to_repo invite_user_to_repository # List all invitations for a repository @@ -26,11 +25,10 @@ # # @param repo [Integer, String, Repository, Hash] A GitHub repository # @return [Array<Sawyer::Resource>] A list of invitations # @see https://developer.github.com/v3/repos/invitations/#list-invitations-for-a-repository def repository_invitations(repo, options = {}) - options = ensure_api_media_type(:repository_invitations, options) paginate "#{Repository.path repo}/invitations", options end alias repo_invitations repository_invitations # Delete an invitation for a repository @@ -40,11 +38,10 @@ # @param repo [Integer, String, Repository, Hash] A GitHub repository # @param invitation_id [Integer] The id of the invitation # @return [Boolean] True if the invitation was successfully deleted # @see https://developer.github.com/v3/repos/invitations/#delete-a-repository-invitation def delete_repository_invitation(repo, invitation_id, options = {}) - options = ensure_api_media_type(:repository_invitations, options) boolean_from_response :delete, "#{Repository.path repo}/invitations/#{invitation_id}", options end alias delete_repo_invitation delete_repository_invitation # Update an invitation for a repository @@ -54,11 +51,10 @@ # @param repo [Integer, String, Repository, Hash] A GitHub repository # @param invitation_id [Integer] The id of the invitation # @return [Sawyer::Resource] The updated repository invitation # @see https://developer.github.com/v3/repos/invitations/#update-a-repository-invitation def update_repository_invitation(repo, invitation_id, options = {}) - options = ensure_api_media_type(:repository_invitations, options) patch "#{Repository.path repo}/invitations/#{invitation_id}", options end alias update_repo_invitation update_repository_invitation # List all repository invitations for the user @@ -66,11 +62,10 @@ # Requires authenticated client # # @return [Array<Sawyer::Resource>] The users repository invitations # @see https://developer.github.com/v3/repos/invitations/#list-a-users-repository-invitations def user_repository_invitations(options = {}) - options = ensure_api_media_type(:repository_invitations, options) paginate "/user/repository_invitations", options end alias user_repo_invitations user_repository_invitations # Accept a repository invitation @@ -79,11 +74,10 @@ # # @param invitation_id [Integer] The id of the invitation # @return [Boolean] True if the acceptance of the invitation was successful # @see https://developer.github.com/v3/repos/invitations/#accept-a-repository-invitation def accept_repository_invitation(invitation_id, options = {}) - options = ensure_api_media_type(:repository_invitations, options) patch "/user/repository_invitations/#{invitation_id}", options end alias accept_repo_invitation accept_repository_invitation # Decline a repository invitation @@ -92,10 +86,9 @@ # # @param invitation_id [Integer] The id of the invitation # @return [Boolean] True if the acceptance of the invitation was successful # @see https://developer.github.com/v3/repos/invitations/#decline-a-repository-invitation def decline_repository_invitation(invitation_id, options = {}) - options = ensure_api_media_type(:repository_invitations, options) boolean_from_response :delete, "/user/repository_invitations/#{invitation_id}", options end alias decline_invitation decline_repository_invitation end end