Class: SimplyAuth::UserPool
- Defined in:
- app/models/simply_auth/user_pool.rb
Instance Attribute Summary collapse
-
#name ⇒ Object
Returns the value of attribute name.
Attributes inherited from Model
Class Method Summary collapse
Instance Method Summary collapse
Methods inherited from Model
#attributes=, collection_path, #collection_path, create, #data, #data=, find, #initialize, #instance_path, owner_class, owner_class_name, #owner_id, path_component, #persisted=, #persisted?, #save
Constructor Details
This class inherits a constructor from SimplyAuth::Model
Instance Attribute Details
#name ⇒ Object
Returns the value of attribute name.
3 4 5 |
# File 'app/models/simply_auth/user_pool.rb', line 3 def name @name end |
Class Method Details
.all ⇒ Object
16 17 18 19 20 21 22 23 24 25 26 |
# File 'app/models/simply_auth/user_pool.rb', line 16 def self.all response = RestClient.get( "https://api.simplyauth.com#{collection_path}", accept: :json ) body = JSON.parse(response.body) body.map do |data| data = data.deep_transform_keys { |key| key.to_s.underscore } new(data) end end |
.instance_path(ids = []) ⇒ Object
8 9 10 11 12 13 14 |
# File 'app/models/simply_auth/user_pool.rb', line 8 def self.instance_path(ids = []) if ids.empty? super([SimplyAuth::Config.user_pool_id]) else super(ids) end end |