249539fc27
Cf #9485
18 lines
355 B
Ruby
18 lines
355 B
Ruby
class DossierCorrection < ApplicationRecord
|
|
belongs_to :dossier
|
|
belongs_to :commentaire
|
|
|
|
validates_associated :commentaire
|
|
|
|
scope :pending, -> { where(resolved_at: nil) }
|
|
|
|
enum reason: {
|
|
incorrect: 'incorrect',
|
|
incomplete: 'incomplete',
|
|
outdated: 'outdated'
|
|
}, _prefix: :dossier
|
|
|
|
def resolved?
|
|
resolved_at.present?
|
|
end
|
|
end
|