Sha256: ee94afff03d5e4a4cf1c80244548c6a37a354fbc91fb16e93269aba499689412

Contents?: true

Size: 1.42 KB

Versions: 2

Compression:

Stored size: 1.42 KB

Contents

require 'rails_admin/custom_show_in_app'

RailsAdmin.config do |config|
  ## == Devise ==
  # this is required if not using cancan
  #config.authenticate_with do
    #warden.authenticate! scope: :user
  #end
  
  config.current_user_method(&:current_user)
  
  ## == Cancan ==
  config.authorize_with :cancan

  ## == MongoidAudit
  config.audit_with :mongoid_audit, 'HistoryTracker'

  config.actions do
    dashboard # mandatory

    # collection actions
    index
    new
    export
    bulk_delete

    # member actions
    show
    edit
    delete

    history_index
    history_show

    nested_set do
      visible do
        ['Page', 'Slide', 'Partner'].include? bindings[:abstract_model].model_name
      end
    end
    
    custom_show_in_app do
      visible do
        ['Page', 'News'].include? bindings[:abstract_model].model_name
      end
    end
    
    toggle
    toggle_menu
  end

  config.main_app_name = ['<%= Rails.application.class.name.split('::')[0] %>', 'Админка']

  config.excluded_models = [
      'RailsAdmin::CustomShowInApp', 'HistoryTracker',
      'Ckeditor::Asset', 'Ckeditor::AttachmentFile', 'Ckeditor::Picture',
  ]
end

# [required] fix for timezones to be displayed in local time instead of UTC
module RailsAdmin
  module Config
    module Fields
      module Types
        class Datetime
          def value
            bindings[:object].send(name)
          end
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rocket_cms-0.2.12 lib/generators/rocket_cms/templates/admin.erb
rocket_cms-0.2.10 lib/generators/rocket_cms/templates/admin.erb