mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
16 lines
274 B
Ruby
16 lines
274 B
Ruby
class ScenesController < ContentController
|
|
private
|
|
|
|
def content_params
|
|
params.require(:scene).permit(content_param_list)
|
|
end
|
|
|
|
def content_param_list
|
|
%i(
|
|
name summary universe_id
|
|
cause description results
|
|
notes private_notes
|
|
)
|
|
end
|
|
end
|