class Github::Client::Authorizations

def update(*args)

Other tags:
    Api: - public

Options Hash: (**params)
  • :fingerprint (String) --
  • :note (String) --
  • :remove_scopes (Array) --
  • :add_scopes (Array) --
  • :scopes (Array) --

Parameters:
  • inputs (Hash) --

Other tags:
    See: https://developer.github.com/v3/oauth_authorizations/#update-an-existing-authorization -
def update(*args)
  raise_authentication_error unless authenticated?
  arguments(args, required: [:id])
  patch_request("/authorizations/#{arguments.id}", arguments.params)
end