mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
17 lines
348 B
Ruby
17 lines
348 B
Ruby
class LanguagesController < ContentController
|
|
private
|
|
|
|
def content_param_list
|
|
%i(
|
|
name other_names universe_id
|
|
history typology dialectical_information register
|
|
phonology
|
|
grammar
|
|
numbers quantifiers
|
|
notes private_notes privacy
|
|
) + [
|
|
custom_attribute_values: [:name, :value]
|
|
]
|
|
end
|
|
end
|