How can you reference the instance of the object you are currently viewing?
The following WORKS
ActiveAdmin.register Example do
sidebar "test" do
@name = example.name
end
end
The following DOESN'T Work
ActiveAdmin.register Example do
member_action :some_stuff, :method => :put do
@name = example.name
end
end
How can I reference the object in the member_action?
Or will I have to create another instance?