# frozen_string_literal: truerequire"active_admin/dynamic_settings_node"moduleActiveAdminclassNamespaceSettings<DynamicSettingsNode# The default number of resources to display on index pagesregister:default_per_page,30# The max number of resources to display on index pages and batch exportsregister:max_per_page,10_000# The title which gets displayed in the main layoutregister:site_title,"",:string_symbol_or_proc# The method to call in controllers to get the current userregister:current_user_method,false# The method to call in the controllers to ensure that there# is a currently authenticated admin userregister:authentication_method,false# The path to log user's out with. If set to a symbol, we assume# that it's a method to call which returns the pathregister:logout_link_path,:destroy_admin_user_session_path# Whether the batch actions are enabled or notregister:batch_actions,false# Whether filters are enabledregister:filters,true# The namespace rootregister:root_to,"dashboard#index"# Options that are passed to root_toregister:root_to_options,{}# Options passed to the routes, i.e. { path: '/custom' }register:route_options,{}# Display breadcrumbsregister:breadcrumb,true# Display create another checkbox on a new page# @return [Boolean] (true)register:create_another,false# Default CSV optionsregister:csv_options,{col_sep: ",",byte_order_mark: "\xEF\xBB\xBF"}# Default Download Links optionsregister:download_links,true# The authorization adapter to useregister:authorization_adapter,ActiveAdmin::AuthorizationAdapter# A proc to be used when a user is not authorized to view the current resourceregister:on_unauthorized_access,:rescue_active_admin_access_denied# Whether to display 'Current Filters' on search screenregister:current_filters,true# class to handle orderingregister:order_clause,ActiveAdmin::OrderClause# default show_count for scopesregister:scopes_show_count,true# Request parameters that are permitted by defaultregister:permitted_params,[:utf8,:_method,:authenticity_token,:commit,:id]# Set flash message keys that shouldn't show in ActiveAdmin.# By default, we remove the `timedout` key from Devise.register:flash_keys_to_except,["timedout"]# Include association filters by defaultregister:include_default_association_filters,trueregister:maximum_association_filter_arity,:unlimitedregister:filter_columns_for_large_association,[:display_name,:full_name,:name,:username,:login,:title,:email,]register:filter_method_for_large_association,"_start"endend