Sha256: 5e7fb2f21ee80941e242eb623a5420ff0226c7a68f4d4991cb00e7bef70e96d8
Contents?: true
Size: 995 Bytes
Versions: 4
Compression:
Stored size: 995 Bytes
Contents
require 'rails_admin' require "thecore_actions" include TheCoreActions RailsAdmin.config do |config| # config.main_app_name = Proc.new { |controller| # [(Settings.app_name rescue (ENV["APP_NAME"] || "TheCore App")), "#{controller.params[:action].try(:titleize)} (#{Time.zone.now.to_s(:time)})"] # } ### Popular gems integration ## == Devise == config.authenticate_with do warden.authenticate! scope: :user end config.current_user_method(&:current_user) ## == Cancan == config.authorize_with :cancancan ## == 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.label_methods.unshift(:display_name) config.actions do # show_in_app dashboard # mandatory index # mandatory new export bulk_delete show edit delete toggle end end # require "thecore_rails_admin_main_controller_concern"
Version data entries
4 entries across 4 versions & 1 rubygems