Files
openfoodnetwork/app/models/custom_tab.rb
2023-08-11 10:14:15 +10:00

10 lines
204 B
Ruby

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