module Neography::Rest::Auth

Public Instance Methods

change_password(password) click to toggle source
# File lib/neography/rest/auth.rb, line 6
def change_password(password)
  options = {
    :body => { :password => password }.to_json,
    :headers => json_content_type
  }
  @connection.post("/user/neo4j/password", options)
end