2025-01-21 18:27:26 +08:00
|
|
|
ActiveAdmin.register Region do
|
2025-01-28 01:03:06 +08:00
|
|
|
menu label: "Region Manager", parent: "系统管理"
|
2025-01-21 18:27:26 +08:00
|
|
|
# See permitted parameters documentation:
|
|
|
|
# https://github.com/activeadmin/activeadmin/blob/master/docs/2-resource-customization.md#setting-up-strong-parameters
|
|
|
|
#
|
|
|
|
# Uncomment all parameters which should be permitted for assignment
|
|
|
|
#
|
|
|
|
permit_params :name, :code
|
|
|
|
#
|
|
|
|
# or
|
|
|
|
#
|
|
|
|
# permit_params do
|
|
|
|
# permitted = [:name, :code, :slug]
|
|
|
|
# permitted << :other if params[:action] == 'create' && current_user.admin?
|
|
|
|
# permitted
|
|
|
|
# end
|
|
|
|
index do
|
|
|
|
selectable_column
|
|
|
|
id_column
|
|
|
|
column :name
|
|
|
|
column :code
|
|
|
|
column :countries_count do |region|
|
|
|
|
region.countries.count
|
|
|
|
end
|
|
|
|
column :cities_count do |region|
|
|
|
|
region.cities.count
|
|
|
|
end
|
|
|
|
actions
|
|
|
|
end
|
|
|
|
end
|