Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 422 Bytes

File metadata and controls

18 lines (14 loc) · 422 Bytes

Base section.

All other sections inherits from it. It's the section used in configuration when no section is specified (you can also explicitly use the base section name).

Example:

RailsAdmin.config do |config|
  config.model Team do
    configure :name do
      label "Team's name"
    end
  end
end

More here