Files
openfoodnetwork/app/models/custom_tab.rb
Jean-Baptiste Bellet 1594d1c718 Validate custom tab title
2023-06-05 15:41:33 +02:00

8 lines
150 B
Ruby

# frozen_string_literal: false
class CustomTab < ApplicationRecord
belongs_to :enterprise, optional: false
validates :title, presence: true
end