I'm using Activeadmin for the admin interface on an app I'm working on (loving it) and I am curious if there is a way to disable the "New Resource" link in the upper-right corner of the resource show page?

The particular resource I'm using is nested inside another resource and I have a partial that allows it to be created from the show page on that parent resource.

I have disabled the resource in the menu, but I'd rather leave the resource in the menu so I can see/edit/delete those resources without having to find it by looking through its parent resource.

link|improve this question

71% accept rate
feedback

2 Answers

up vote 1 down vote accepted

Try config.clear_action_items!

link|improve this answer
That right there did it. Thank you very much. In the event that I want to have items in the action menu, do I just add them after I clear it? – YuKagi Oct 20 '11 at 17:49
in the index menu adding "default_actions" works to get view/edit/delete actions – makvool Oct 22 '11 at 10:21
I got this: undefined method `clear_action_items!' for #<ActiveAdmin::Application:0x00000103447628> (NoMethodError) – makaroni4 Nov 8 '11 at 15:06
feedback

Previous solution didn`t work for me, so here is general solutions, that works always:

ActiveAdmin.register Book do
  actions :index

  #or like that
  #actions :all, :except => [:destroy]

  index do
    column :title
    column :author
  end  
end
link|improve this answer
actions :index did not work for me, but actions :all, :except => [:new] did the job. – mbillard Mar 21 at 19:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.