Skip to content

Commit

Permalink
feat: update changelog and RBE with warning
Browse files Browse the repository at this point in the history
  • Loading branch information
XavierJp committed Jul 17, 2024
1 parent dfe1ad2 commit 5aeef2c
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import React from 'react';
import routes from '#clients/routes';
import { Warning } from '#components-ui/alerts';
import InpiPartiallyDownWarning from '#components-ui/alerts-with-explanations/inpi-partially-down';
import { HorizontalSeparator } from '#components-ui/horizontal-separator';
import { INPI } from '#components/administrations';
Expand Down Expand Up @@ -87,6 +88,7 @@ function BénéficiairesContent({

return (
<>
<WarningRBE />
{immatriculationRNE.beneficiaires.length === 0 ? (
<p>
Cette structure ne possède aucun{' '}
Expand Down Expand Up @@ -139,3 +141,35 @@ function BénéficiairesContent({
</>
);
}

const WarningRBE = () => (
<Warning>
À compter du 31 juillet 2024, le registre des bénéficiaires effectifs n’est
plus accessible au public, en application de la{' '}
<a
href="https://www.legifrance.gouv.fr/jorf/id/JORFTEXT000049761732"
target="_blank"
rel="noopener noreferrer"
>
directive européenne 2024/1640 du 31 mai 2024
</a>
. Désormais, seules les{' '}
<a
href="https://www.inpi.fr/faq/qui-peut-acceder-aux-donnees-des-beneficiaires-effectifs"
target="_blank"
rel="noopener noreferrer"
>
personnes en mesure de justifier d’un intérêt légitime
</a>{' '}
peuvent{' '}
<a
href="https://data.inpi.fr/content/editorial/acces_BE"
target="_blank"
rel="noopener noreferrer"
>
effectuer une demande d’accès
</a>{' '}
au registre auprès de l’
<INPI />.
</Warning>
);
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { HttpNotFound } from '#clients/exceptions';
import { Icon } from '#components-ui/icon/wrapper';
import { Loader } from '#components-ui/loader';
import { INPI, INSEE, MI } from '#components/administrations';
import {
Expand Down Expand Up @@ -82,8 +83,10 @@ const DirigeantSummary: React.FC<IDirigeantSummaryProps> = ({
.length;
summaries.push(
<a href="#beneficiaires">
{beneficiairesCount} bénéficiaires inscrits à Référentiel des
Bénéficiaires Effectifs
<Icon slug="alertFill" color="#ff9c00">
{beneficiairesCount} bénéficiaires inscrits à Référentiel des
Bénéficiaires Effectifs
</Icon>
</a>
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default function ChangelogWithFilters() {
className="fr-fieldset"
>
<legend className="fr-fieldset__legend" id="sidebar_category_legend">
Filtres
Qui est concerné ?
</legend>
<div className="fr-fieldset__element">
<div className="fr-checkbox-group">
Expand All @@ -47,7 +47,7 @@ export default function ChangelogWithFilters() {
checked={showPublic}
/>
<label className="fr-label" htmlFor="filter-all">
Accessible à tous
Tous les usagers
</label>
</div>
</div>
Expand Down Expand Up @@ -81,7 +81,7 @@ export default function ChangelogWithFilters() {
</Icon>
</Tag>
) : (
<Tag color="info">accessible à tous</Tag>
<Tag color="info">Tous les usagers</Tag>
)}
{change.htmlBody && (
<p dangerouslySetInnerHTML={{ __html: change.htmlBody }} />
Expand Down
5 changes: 5 additions & 0 deletions data/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
---
- date: 31/07/2024
body: |
Le registre des bénéficiaires effectifs n’est plus accessible au public, en application de la [directive européenne 2024/1640 du 31 mai 2024](https://www.legifrance.gouv.fr/jorf/id/JORFTEXT000049761732).
Désormais, seules les [personnes en mesure de justifier d’un intérêt légitime](https://www.inpi.fr/faq/qui-peut-acceder-aux-donnees-des-beneficiaires-effectifs) peuvent [effectuer une demande d’accès au registre auprès de l’INPI](https://data.inpi.fr/content/editorial/acces_BE)
- date: 27/06/2024
body: Ajout de la vérification du [numéro EORI](https://www.economie.gouv.fr/entreprises/numero-eori) pour tous les visiteurs.
- date: 14/05/2024
Expand Down

0 comments on commit 5aeef2c

Please sign in to comment.