Reputation: 9825
Here's where I'd like to add a new button:
I'd like to add a new button on the upper right, pointing to a custom URL based on some properties in the user the page is referring to.
I couldn't find the right options here.
Upvotes: 5
Views: 11536
Reputation: 5363
They call them action items
:
action_item :import_demo, only: :show do
link_to 'Import Demo', '#'
end
Upvotes: 19