notebook/app/controllers/buildings_controller.rb
2018-11-01 18:47:27 -05:00

13 lines
228 B
Ruby

class BuildingsController < ContentController
private
def content_param_list
[
:name, :universe_id, :privacy, :page_type
] + [ #<relations>
custom_attribute_values: [:name, :value],
]
end
end