module Trello::HasActions

Public Instance Methods

actions(options = {}) click to toggle source

Returns a list of the actions associated with this object.

# File lib/trello/has_actions.rb, line 4
def actions(options = {})
  actions = Action.from_response client.get("#{request_prefix}/actions", { filter: :all }.merge(options))
  MultiAssociation.new(self, actions).proxy
end