Method: Ui::Actionable#actions

Defined in:
lib/ui/actionable.rb

#actionsObject



5
6
7
8
9
10
11
12
13
# File 'lib/ui/actionable.rb', line 5

def actions
  (:nav, class: 'ui-actions', role: 'navigation') do
    render_group(
      Actions[actions_list].map do |action|
        action.call(model)
      end
    )
  end
end