mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-02 02:11:33 +00:00
9 lines
203 B
Ruby
9 lines
203 B
Ruby
class EnterpriseFee < ActiveRecord::Base
|
|
belongs_to :enterprise
|
|
|
|
FEE_TYPES = %w(Packing Transport Admin Sales)
|
|
|
|
validates_inclusion_of :fee_type, :in => FEE_TYPES
|
|
validates_presence_of :name
|
|
end
|