mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
16 lines
229 B
Ruby
16 lines
229 B
Ruby
module PreferenceSections
|
|
class HeaderSection
|
|
def name
|
|
I18n.t('admin.contents.edit.header')
|
|
end
|
|
|
|
def preferences
|
|
[
|
|
:logo,
|
|
:logo_mobile,
|
|
:logo_mobile_svg
|
|
]
|
|
end
|
|
end
|
|
end
|