demarches-normaliennes/app/models/assign_to.rb

29 lines
919 B
Ruby
Raw Normal View History

2018-03-06 13:44:29 +01:00
class AssignTo < ApplicationRecord
belongs_to :procedure
belongs_to :gestionnaire
2017-10-02 17:03:30 +02:00
has_one :procedure_presentation, dependent: :destroy
def procedure_presentation_or_default_and_errors
errors = reset_procedure_presentation_if_invalid
[procedure_presentation || build_procedure_presentation, errors]
end
private
def reset_procedure_presentation_if_invalid
if procedure_presentation&.invalid?
# This is a last defense against invalid `ProcedurePresentation`s persistently
# hindering instructeurs. Whenever this gets triggered, it means that there is
# a bug somewhere else that we need to fix.
errors = procedure_presentation.errors
Raven.capture_message(
"Destroying invalid ProcedurePresentation",
extra: { procedure_presentation: procedure_presentation.as_json }
)
self.procedure_presentation = nil
errors
end
2017-10-02 17:03:30 +02:00
end
2017-04-04 15:27:04 +02:00
end