- Update menu labels for cities, countries, and regions - Introduce new entities for states and subregions in Admin Panel - Implement admin authentication for weather art generation - Modify application controller to check for admin user - Refactor view to display admin panel based on user permissions - Update routes to include weather art generation action These changes enhance the admin interface for better management of cities and related entities. The new admin checks ensure that only authorized users can generate weather art, improving security and functionality.
43 lines
977 B
Ruby
43 lines
977 B
Ruby
ActiveAdmin.register Country do
|
|
menu label: "Countries", parent: "数据管理"
|
|
controller do
|
|
def find_resource
|
|
scoped_collection.friendly.find(params[:id])
|
|
end
|
|
end
|
|
# 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, :region_id
|
|
#
|
|
# or
|
|
#
|
|
# permit_params do
|
|
# permitted = [:name, :code, :slug, :region_id]
|
|
# permitted << :other if params[:action] == 'create' && current_user.admin?
|
|
# permitted
|
|
# end
|
|
index do
|
|
selectable_column
|
|
id_column
|
|
column :name
|
|
column :code
|
|
column :region
|
|
column :cities_count do |country|
|
|
country.cities.count
|
|
end
|
|
actions
|
|
end
|
|
|
|
form do |f|
|
|
f.inputs do
|
|
f.input :region
|
|
f.input :name
|
|
f.input :code
|
|
end
|
|
f.actions
|
|
end
|
|
end
|