2021-11-25 16:26:55 +01:00
|
|
|
|
= render partial: 'administrateurs/breadcrumbs',
|
2020-04-27 14:58:12 +02:00
|
|
|
|
locals: { steps: [link_to('Démarches', admin_procedures_path),
|
|
|
|
|
link_to(@procedure.libelle, admin_procedure_path(@procedure)),
|
|
|
|
|
'Jeton'] }
|
|
|
|
|
|
|
|
|
|
.container
|
|
|
|
|
%h1.page-title
|
|
|
|
|
Configurer le jeton API Entreprise
|
|
|
|
|
|
|
|
|
|
.container
|
|
|
|
|
%h1
|
2021-11-25 16:26:55 +01:00
|
|
|
|
= form_with model: @procedure, url: url_for({ controller: 'administrateurs/procedures', action: :update_jeton }), html: { class: 'form' } do |f|
|
2020-04-27 14:58:12 +02:00
|
|
|
|
%p.explication
|
|
|
|
|
Démarches Simplifiées utilise
|
|
|
|
|
= link_to 'API Entreprise', "https://entreprise.api.gouv.fr/"
|
|
|
|
|
qui permet de récupérer les informations administratives des entreprises et des associations.
|
2021-05-26 15:16:30 +02:00
|
|
|
|
Si votre démarche nécessite des autorisations spécifiques que Démarches Simplifiées n’a pas par défaut, merci de renseigner ici le jeton
|
2020-04-27 14:58:12 +02:00
|
|
|
|
= link_to 'API Entreprise', "https://entreprise.api.gouv.fr/demander_un_acces/"
|
|
|
|
|
propre à votre démarche.
|
|
|
|
|
|
|
|
|
|
= f.label :api_entreprise_token, "Jeton"
|
2020-10-06 16:37:49 +02:00
|
|
|
|
= f.password_field :api_entreprise_token, value: @procedure.read_attribute(:api_entreprise_token), class: 'form-control'
|
2020-04-27 14:58:12 +02:00
|
|
|
|
.text-right
|
|
|
|
|
= f.button 'Enregistrer', class: 'button primary send'
|