Method: Evvnt::ClassTemplateMethods#mine
- Defined in:
- lib/evvnt/class_template_methods.rb
#mine(**params) ⇒ Object
Template method for fetching mine records from the API.
params - A Hash of params to send to the API.
Returns Array
81 82 83 84 |
# File 'lib/evvnt/class_template_methods.rb', line 81 def mine(**params) path = File.join(plural_resource_path, "mine").to_s api_request(:get, path, params: params) end |