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

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