mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
16 lines
304 B
Ruby
16 lines
304 B
Ruby
module PreferenceSections
|
|
class GroupSignupPageSection
|
|
def name
|
|
I18n.t('admin.contents.edit.group_signup_page')
|
|
end
|
|
|
|
def preferences
|
|
[
|
|
:group_signup_pricing_table_html,
|
|
:group_signup_case_studies_html,
|
|
:group_signup_detail_html
|
|
]
|
|
end
|
|
end
|
|
end
|