1
0
mirror of https://github.com/openfoodfoundation/openfoodnetwork synced 2026-04-10 07:03:50 +00:00
Files
openfoodnetwork/app/services/permitted_attributes/custom_tab.rb

12 lines
159 B
Ruby

# frozen_string_literal: true
module PermittedAttributes
class CustomTab
def self.attributes
[
:title, :content
]
end
end
end