class IAuditor::Actions
Public Instance Methods
create(options)
click to toggle source
# File lib/iAuditor/actions.rb, line 17 def create(options) end
fetch(action_id)
click to toggle source
# File lib/iAuditor/actions.rb, line 13 def fetch(action_id) @audits = self.class.get("/actions/#{action_id}", @options) end
search(options={})
click to toggle source
Retrieving actions
# File lib/iAuditor/actions.rb, line 8 def search(options={}) @options.merge!(body: options.to_json) if options.present? @actions = self.class.post("/actions/search", @options) end
update(options)
click to toggle source
# File lib/iAuditor/actions.rb, line 21 def update(options) end