mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
12 lines
348 B
Ruby
12 lines
348 B
Ruby
# frozen_string_literal: true
|
|
|
|
class EnterpriseRole < ApplicationRecord
|
|
belongs_to :user, class_name: "Spree::User"
|
|
belongs_to :enterprise
|
|
|
|
validates :enterprise_id,
|
|
uniqueness: { scope: :user_id, message: I18n.t(:enterprise_role_uniqueness_error) }
|
|
|
|
scope :by_user_email, -> { joins(:user).order('spree_users.email ASC') }
|
|
end
|