mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
26 lines
1.1 KiB
Ruby
26 lines
1.1 KiB
Ruby
class CountriesController < ContentController
|
|
private
|
|
|
|
def content_param_list
|
|
[
|
|
:universe_id, :user_id,
|
|
:name, :description, :other_names,
|
|
:population, :currency, :laws, :sports,
|
|
:area, :crops, :climate,
|
|
:founding_story, :established_year, :notable_wars,
|
|
:notes, :private_notes,
|
|
:privacy,
|
|
custom_attribute_values: [:name, :value],
|
|
country_towns_attributes: [:id, :town_id, :_destroy],
|
|
country_locations_attributes: [:id, :location_id, :_destroy],
|
|
country_languages_attributes: [:id, :language_id, :_destroy],
|
|
country_religions_attributes: [:id, :religion_id, :_destroy],
|
|
country_landmarks_attributes: [:id, :landmark_id, :_destroy],
|
|
country_creatures_attributes: [:id, :creature_id, :_destroy],
|
|
country_floras_attributes: [:id, :flora_id, :_destroy],
|
|
country_governments_attributes: [:id, :government_id, :_destroy],
|
|
country_bordering_countries_attributes: [:id, :bordering_country_id, :_destroy]
|
|
]
|
|
end
|
|
end
|