Skip to content

Commit d07710a

Browse files
author
ledouxm
committed
fix: remove every occurence of crvif
1 parent d796d8c commit d07710a

7 files changed

Lines changed: 9 additions & 9 deletions

File tree

packages/backend/src/features/mail.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export const sendPasswordResetMail = ({ email, temporaryLink }: { email: string;
8181
return transporter.sendMail({
8282
from: ENV.EMAIL_EMITTER,
8383
to: email,
84-
subject: "CR VIF - Réinitialisation de mot de passe",
84+
subject: "Patrinotes - Réinitialisation de mot de passe",
8585
text: `Voici le lien de réinitialisation de votre mot de passe : ${ENV.FRONTEND_URL}/reset-password/${temporaryLink}`,
8686
});
8787
};

packages/backend/src/router.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ export const initFastify = async () => {
2929
openapi: {
3030
openapi: "3.1.0",
3131
info: {
32-
title: "CR VIF API",
33-
description: "CR VIF API Documentation",
32+
title: "Patrinotes API",
33+
description: "Patrinotes API Documentation",
3434
version: "1.0",
3535
},
3636
},

packages/frontend/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
/>
1919

2020
<link rel="stylesheet" href="./node_modules/@codegouvfr/react-dsfr/main.css" />
21-
<title>CR VIF</title>
21+
<title>Patrinotes</title>
2222
</head>
2323
<body>
2424
<div id="root"></div>

packages/frontend/src/features/Layout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const AppFooter = () => {
3535
<div className="fr-container">
3636
<div className="fr-footer__body">
3737
<div className="fr-footer__brand fr-enlarge-link">
38-
<a className="active" title="Compte rendu vif" href="/" data-status="active">
38+
<a className="active" title="Patrinotes" href="/" data-status="active">
3939
<p className="fr-logo">
4040
Ministère
4141
<br /> de la culture
@@ -164,7 +164,7 @@ const AppHeader = ({ noProvider }: { noProvider?: boolean }) => {
164164
width="100%"
165165
margin="0"
166166
>
167-
<Link style={{ textWrap: "nowrap" }} to="/" title="Compte rendu vif" search={{ document: "constats" }}>
167+
<Link style={{ textWrap: "nowrap" }} to="/" title="Patrinotes" search={{ document: "constats" }}>
168168
<Box
169169
className="fr-header__brand"
170170
sx={{

packages/frontend/src/routes/account.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ const Share = () => {
324324
small={false}
325325
severity="info"
326326
description={
327-
"Aucun autre utilisateur de votre UDAP n'est enregistré sur Compte rendu VIF. Vous ne pouvez donc pas autoriser d'autres personnes à créer, modifier et supprimer vos CR."
327+
"Aucun autre utilisateur de votre UDAP n'est enregistré sur Patrinotes. Vous ne pouvez donc pas autoriser d'autres personnes à créer, modifier et supprimer vos CR."
328328
}
329329
/>
330330
)}

packages/frontend/src/routes/reset-password.$link.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const ResetPasswordAction = () => {
2828
return (
2929
<Center mt="20px" mb="80px">
3030
<Flex flexDirection="column" width="484px" p="16px">
31-
<Typography variant="h4">Récupération de mot de passe pour Compte-rendu VIF</Typography>
31+
<Typography variant="h4">Récupération de mot de passe pour Patrinotes</Typography>
3232
<p>Veuillez saisir votre nouveau mot de passe</p>
3333

3434
<form onSubmit={form.handleSubmit((values) => mutation.mutate(values))}>

packages/frontend/src/routes/reset-password.index.lazy.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const ResetPasswordPage = () => {
2020
return (
2121
<Center mt="20px" mb="80px">
2222
<Flex flexDirection="column" width="484px" p="16px">
23-
<Typography variant="h4">Récupération de mot de passe pour Compte-rendu VIF</Typography>
23+
<Typography variant="h4">Récupération de mot de passe pour Patrinotes</Typography>
2424
<p>
2525
Veuillez saisir l’adresse courriel associée à votre compte. Nous vous enverrons un lien pour réinitialiser
2626
votre mot de passe.

0 commit comments

Comments
 (0)