Files
openfoodnetwork/app/models/preference_sections/producer_signup_page_section.rb

16 lines
319 B
Ruby

module PreferenceSections
class ProducerSignupPageSection
def name
I18n.t('admin.contents.edit.producer_signup_page')
end
def preferences
[
:producer_signup_pricing_table_html,
:producer_signup_case_studies_html,
:producer_signup_detail_html
]
end
end
end