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

14 lines
230 B
Ruby

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