We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
To enable or disable defaults CRUD actions from your resource, just add in app/admin/posts.rb::
app/admin/posts.rb
ActiveAdmin.register Post do # Disable the new and destroy actions, but you can still edit your records actions :index, :edit, :show, :update end
ActiveAdmin.register Post do # Disable the new action and edit actions, but now you can delete records actions :index, :destroy, :show end