mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-27 21:06:49 +00:00
9 lines
227 B
Ruby
9 lines
227 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Spree
|
|
class Role < ActiveRecord::Base
|
|
has_and_belongs_to_many :users, join_table: 'spree_roles_users',
|
|
class_name: Spree.user_class.to_s
|
|
end
|
|
end
|