mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-04 22:16:08 +00:00
8 lines
150 B
Ruby
8 lines
150 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Spree
|
|
class TokenizedPermission < ActiveRecord::Base
|
|
belongs_to :permissable, polymorphic: true
|
|
end
|
|
end
|