Skip to content

Commit

Permalink
Met à jour l’organisme pôle emploi (#2176)
Browse files Browse the repository at this point in the history
  • Loading branch information
niladic authored Jan 29, 2025
1 parent bab473a commit 4ebf0d6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/models/Organisation.scala
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ object Organisation {
val msap: Organisation = Organisation("MSAP", "Maison de services au public")
val hopital: Organisation = Organisation("Hôpital", "Hôpital")
val poleEmploiId: Id = Organisation.Id("Pôle emploi")
val poleEmploi: Organisation = Organisation(poleEmploiId, "Pôle emploi", "Pôle emploi")
val poleEmploi: Organisation = Organisation(poleEmploiId, "France Travail", "France Travail")
val prefId: Id = Organisation.Id("Préf")
val pref: Organisation = Organisation(prefId, "Préf", "Préfecture")
val sousPrefId: Id = Organisation.Id("Sous-Préf")
Expand Down
11 changes: 11 additions & 0 deletions conf/evolutions/default/80.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
--- !Ups

UPDATE organisation SET short_name = 'France Travail' WHERE id = 'Pôle emploi';
UPDATE organisation SET name = 'France Travail' WHERE id = 'Pôle emploi';



--- !Downs

UPDATE organisation SET name = 'Pôle emploi' WHERE id = 'Pôle emploi';
UPDATE organisation SET short_name = 'Pôle emploi' WHERE id = 'Pôle emploi';

0 comments on commit 4ebf0d6

Please sign in to comment.