Class: Parse::User
Instance Attribute Summary
Attributes inherited from Object
#class_name, #created_at, #parse_object_id, #updated_at
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ User
constructor
A new instance of User.
- #uri ⇒ Object
Methods inherited from Object
#array_add, #array_add_relation, #array_add_unique, #array_remove, #decrement, #eql?, #get, #hash, #increment, #inspect, #new?, #parse_delete, #pointer, #refresh, #rest_api_hash, #safe_hash, #save, #should_call_to_h?, #to_h, #to_json, #to_s
Constructor Details
#initialize(data = nil) ⇒ User
Returns a new instance of User.
27 28 29 30 31 |
# File 'lib/parse/user.rb', line 27 def initialize(data = nil) data["username"] = data[:username] if data[:username] data["password"] = data[:password] if data[:password] super(Parse::Protocol::CLASS_USER, data) end |
Class Method Details
.authenticate(username, password) ⇒ Object
10 11 12 13 14 15 16 17 18 19 20 |
# File 'lib/parse/user.rb', line 10 def self.authenticate(username, password) body = { "username" => username, "password" => password } response = Parse.client.request(Parse::Protocol::USER_LOGIN_URI, :get, nil, body) Parse.client.session_token = response[Parse::Protocol::KEY_USER_SESSION_TOKEN] new(response) end |