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

15 lines
217 B
Ruby

module PreferenceSections
class HomePageSection
def name
I18n.t('admin.contents.edit.home_page')
end
def preferences
[
:home_hero,
:home_show_stats
]
end
end
end