module HyperTrack::ApiOperations::UserAPI

Public Instance Methods

assign_actions(params) click to toggle source
# File lib/hypertrack/api_operations/user_api.rb, line 5
def assign_actions(params)
  path = "assign_actions/"
  self.update(path, params, [:action_ids])
end
mileage(params={}) click to toggle source
# File lib/hypertrack/api_operations/user_api.rb, line 19
def mileage(params={})
  path = "mileage/"
  self.get(path, params)
end
placeline(params={}) click to toggle source
# File lib/hypertrack/api_operations/user_api.rb, line 14
def placeline(params={})
  path = "placeline/"
  self.get(path, params)
end
update(params) click to toggle source
# File lib/hypertrack/api_operations/user_api.rb, line 10
def update(params)
  self.patch(params)
end