Skip to content

Commit

Permalink
Fix erreur et ajoute le template dans API Particulier
Browse files Browse the repository at this point in the history
  • Loading branch information
DorineLam committed Jul 31, 2024
1 parent b1f057c commit 2156bd7
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/api_entreprise/endpoints/show.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@

<div class="fr-grid-row">
<div class="fr-col-md-<%= layout_main_bloc %> fr-col-12 fr-pt-2w fr-mt-md-0 fr-pr-md-2w fr-pr-0">
<% if @endpoint.alert['description'].present? %>
<% if @endpoint.alert.present? %>
<div class="fr-mt-4w fr-mb-4w">
<div class="fr-alert fr-alert--warning fr-mb-2w">
<h3 class="fr-alert__title">
Expand Down
12 changes: 12 additions & 0 deletions app/views/api_particulier/endpoints/show.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,18 @@

<div class="fr-grid-row">
<div class="fr-col-md-<%= layout_main_bloc %> fr-col-12 fr-pt-2w fr-mt-md-0 fr-pr-md-2w fr-pr-0">
<% if @endpoint.alert.present? %>
<div class="fr-mt-4w fr-mb-4w">
<div class="fr-alert fr-alert--warning fr-mb-2w">
<h3 class="fr-alert__title">
<%= raw @endpoint.alert['title'] %>
</h3>
<p>
<%= markdown_to_html(@endpoint.alert['description']) %>
</p>
</div>
</div>
<% end %>
<% if @endpoint.deprecated? %>
<div class="fr-alert fr-alert--error fr-mb-2w">
<p class="fr-alert__title">
Expand Down
6 changes: 6 additions & 0 deletions config/endpoints/api_particulier/cnaf_quotient_familial.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@
path: '/api/v2/composition-familiale'
ping_url: 'https://particulier.api.gouv.fr/api/caf/ping'
position: 201
alert:
title: "Cette API est interrompue"
description: |+
L'API est interompue dans l'attente du traitement du formulaire de demande réalisée auprès de l'INPI suite à l’application de la [directive européenne n°2024/1640 datant du 31 mai 2024](https://eur-lex.europa.eu/legal-content/FR/ALL/?uri=CELEX:32024L1640){:target="_blank"}.
Vous êtes une administration qui réalise des démarches entreprises ? Vous souhaitez avoir accès à ces données ? Vous pouvez faire une demande d'accès, celle-ci nous permettra de recenser vos besoins et de vous habiliter une fois l'API à nouveau disponible : [Accès API Entreprise](https://api.gouv.fr/les-api/api-entreprise/demande-acces){:target="_blank"}.
perimeter:
entity_type_description: |+
{:.fr-highlight.fr-highlight--caution}
Expand Down
4 changes: 4 additions & 0 deletions config/endpoints/template.entreprise.yml.example
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
path: '/v3/provider/resource/{siren}'
# Position au sein de l'index
position: 501
alert:
title: "Titre de l'alerte"
description: |+
Message en markdown de l'alerte.
extra_description: |+
Texte directement en dessous de la description. Ce champ peut-être omis (optionnel). Le markdown GFM est supporté ici.
perimeter:
Expand Down

0 comments on commit 2156bd7

Please sign in to comment.