Files
openfoodnetwork/app/models/custom_tab.rb
2023-06-08 11:27:07 +02:00

8 lines
175 B
Ruby

# frozen_string_literal: false
class CustomTab < ApplicationRecord
belongs_to :enterprise, optional: false
validates :title, presence: true, length: { maximum: 20 }
end