added rails_admin gem as an alternative for activescaffold
This commit is contained in:
34
back-office/config/initializers/rails_admin.rb
Normal file
34
back-office/config/initializers/rails_admin.rb
Normal file
@@ -0,0 +1,34 @@
|
||||
RailsAdmin.config do |config|
|
||||
|
||||
### Popular gems integration
|
||||
|
||||
## == Devise ==
|
||||
# config.authenticate_with do
|
||||
# warden.authenticate! scope: :user
|
||||
# end
|
||||
# config.current_user_method(&:current_user)
|
||||
|
||||
## == Cancan ==
|
||||
# config.authorize_with :cancan
|
||||
|
||||
## == PaperTrail ==
|
||||
# config.audit_with :paper_trail, 'User', 'PaperTrail::Version' # PaperTrail >= 3.0.0
|
||||
|
||||
### More at https://github.com/sferik/rails_admin/wiki/Base-configuration
|
||||
|
||||
config.actions do
|
||||
dashboard # mandatory
|
||||
index # mandatory
|
||||
new
|
||||
export
|
||||
bulk_delete
|
||||
show
|
||||
edit
|
||||
delete
|
||||
show_in_app
|
||||
|
||||
## With an audit adapter, you can add:
|
||||
# history_index
|
||||
# history_show
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user