Module: ActiveAdmin::Settings::Inheritance

Included in:
Application
Defined in:
lib/active_admin/helpers/settings.rb

Overview

Allows you to define child classes that should receive the same settings, as well as the same default values.

Example from the codebase:

class Application
  include Settings
  include Settings::Inheritance

  settings_inherited_by :Namespace

  inheritable_setting :root_to, 'dashboard#index'
end

Defined Under Namespace

Modules: ClassMethods