mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
8 lines
158 B
Ruby
8 lines
158 B
Ruby
# frozen_string_literal: false
|
|
|
|
class CustomTab < ApplicationRecord
|
|
belongs_to :enterprise
|
|
|
|
validates :title, presence: true, length: { maximum: 20 }
|
|
end
|