Log dossier archiver/desarchiver operations

This commit is contained in:
Paul Chavard 2020-09-09 15:04:58 +02:00 committed by Keirua (Rebase PR Action)
parent 58bc2ee4e3
commit a911a71db9
3 changed files with 15 additions and 3 deletions

View file

@ -97,12 +97,12 @@ module Instructeurs
end
def archive
dossier.update(archived: true)
dossier.archiver!(current_instructeur)
redirect_back(fallback_location: instructeur_procedures_url)
end
def unarchive
dossier.update(archived: false)
dossier.desarchiver!(current_instructeur)
redirect_back(fallback_location: instructeur_procedures_url)
end