mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
11 lines
333 B
Ruby
11 lines
333 B
Ruby
class Customer < ActiveRecord::Base
|
|
belongs_to :enterprise
|
|
belongs_to :user, :class_name => Spree.user_class
|
|
|
|
validates :code, presence: true, uniqueness: {scope: :enterprise_id}
|
|
validates :email, presence: true
|
|
validates :enterprise_id, presence: true
|
|
|
|
scope :of, ->(enterprise) { where(enterprise_id: enterprise) }
|
|
end
|