Skip to content

Commit

Permalink
Ajoute la durée de rétention lors de l’archivage
Browse files Browse the repository at this point in the history
  • Loading branch information
niladic committed Aug 28, 2024
1 parent 10500e8 commit 328bb20
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions app/controllers/ApplicationController.scala
Original file line number Diff line number Diff line change
Expand Up @@ -1801,8 +1801,9 @@ case class ApplicationController @Inject() (
applicationId = application.id.some
)
val successMessage =
s"""|La demande "${application.subject}" a bien été archivée.
|Bravo et merci pour la résolution de cette demande !""".stripMargin
s"""La demande "${application.subject}" a bien été archivée. """ +
"Bravo et merci pour la résolution de cette demande ! " +
"Cette demande sera encore consultable un mois à partir de maintenant dans la colonne « Archivées »"
Future(
Redirect(routes.ApplicationController.myApplications)
.flashing(success -> successMessage)
Expand Down

0 comments on commit 328bb20

Please sign in to comment.