Class: GramV1Client::Account

Inherits:
Base
  • Object
show all
Defined in:
lib/gram_v1_client/account.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Base

password, proxy, reload_config, site, user

Class Method Details

.element_path(id, prefix_options = {}, query_options = nil) ⇒ Object

Overwrite find_single from ActiveResource::Base to be able to use gram api (/accounts suffix) github.com/rails/activeresource/blob/master/lib/active_resource/base.rb#L991



16
17
18
19
# File 'lib/gram_v1_client/account.rb', line 16

def self.element_path(id, prefix_options = {}, query_options = nil)
   id += "/accounts"
   super(id, prefix_options, query_options)
end

Instance Method Details

#to_paramObject

Overwrite to_param from ActiveResource::Base to be able to use gram api (id = hruid) github.com/rails/activeresource/blob/master/lib/active_resource/base.rb#L991



24
25
26
# File 'lib/gram_v1_client/account.rb', line 24

def to_param
  self.hruid
end