Created
April 4, 2013 09:00
-
-
Save neilang/5308900 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# RailsAdmin config file. Generated on April 04, 2013 19:54 | |
# See github.com/sferik/rails_admin for more informations | |
RailsAdmin.config do |config| | |
################ Global configuration ################ | |
# Set the admin name here (optional second array element will appear in red). For example: | |
config.main_app_name = ['Issue1591', 'Admin'] | |
# or for a more dynamic name: | |
# config.main_app_name = Proc.new { |controller| [Rails.application.engine_name.titleize, controller.params['action'].titleize] } | |
# RailsAdmin may need a way to know who the current user is] | |
config.current_user_method { current_user } # auto-generated | |
# If you want to track changes on your models: | |
# config.audit_with :history, 'User' | |
# Or with a PaperTrail: (you need to install it first) | |
# config.audit_with :paper_trail, 'User' | |
# Display empty fields in show views: | |
# config.compact_show_view = false | |
# Number of default rows per-page: | |
# config.default_items_per_page = 20 | |
# Exclude specific models (keep the others): | |
# config.excluded_models = [] | |
# Include specific models (exclude the others): | |
# config.included_models = [] | |
# Label methods for model instances: | |
# config.label_methods << :description # Default is [:name, :title] | |
################ Model configuration ################ | |
# Each model configuration can alternatively: | |
# - stay here in a `config.model 'ModelName' do ... end` block | |
# - go in the model definition file in a `rails_admin do ... end` block | |
# This is your choice to make: | |
# - This initializer is loaded once at startup (modifications will show up when restarting the application) but all RailsAdmin configuration would stay in one place. | |
# - Models are reloaded at each request in development mode (when modified), which may smooth your RailsAdmin development workflow. | |
# Now you probably need to tour the wiki a bit: https://github.com/sferik/rails_admin/wiki | |
# Anyway, here is how RailsAdmin saw your application's models when you ran the initializer: | |
config.actions do | |
# root actions | |
dashboard # mandatory | |
# collection actions | |
index # mandatory | |
new | |
# export | |
# history_index | |
bulk_delete | |
# member actions | |
show | |
edit | |
delete | |
# history_show | |
show_in_app | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment