mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
12 lines
183 B
Ruby
12 lines
183 B
Ruby
module PreferenceSections
|
|
class UserGuideSection
|
|
def name
|
|
I18n.t('admin.contents.edit.user_guide')
|
|
end
|
|
|
|
def preferences
|
|
[:user_guide_link]
|
|
end
|
|
end
|
|
end
|