Skip to content

Instantly share code, notes, and snippets.

@budu
Created March 8, 2013 20:23
Show Gist options
  • Save budu/5119558 to your computer and use it in GitHub Desktop.
Save budu/5119558 to your computer and use it in GitHub Desktop.
# app/admin/account.rb for toplevel configuration options
ActiveAdmin.register Account do
config.batch_actions = false
end
# app/admin/account/form.rb
ActiveAdmin.register Account do
form do |f|
# ...
end
end
# app/admin/account/index.rb
ActiveAdmin.register Account do
index do |f|
# ...
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment