mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
18 lines
279 B
Ruby
18 lines
279 B
Ruby
# frozen_string_literal: true
|
|
|
|
module PreferenceSections
|
|
class HomePageSection
|
|
def name
|
|
I18n.t('admin.contents.edit.home_page')
|
|
end
|
|
|
|
def preferences
|
|
[
|
|
:home_page_alert_html,
|
|
:home_hero,
|
|
:home_show_stats
|
|
]
|
|
end
|
|
end
|
|
end
|