mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-01 12:24:28 +01:00
8 lines
224 B
Ruby
8 lines
224 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class ProofOfIdentityRefusal < ApplicationRecord
|
||
|
belongs_to :user
|
||
|
belongs_to :operator, class_name: 'User', foreign_key: :operator_id
|
||
|
has_and_belongs_to_many :proof_of_identity_types
|
||
|
end
|