Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Met à jour l’organisme pôle emploi #2176

Merged
merged 1 commit into from
Jan 29, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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';