migrate api entreprise privileges

This commit is contained in:
Christophe Robillard 2023-11-14 17:22:18 +01:00
parent a6f4ae3ee4
commit a2f5687aa3
3 changed files with 3 additions and 3 deletions

View file

@ -10,7 +10,7 @@ class APIEntreprise::API
ATTESTATION_SOCIALE_RESOURCE_NAME = "v4/urssaf/unites_legales/%{id}/attestation_vigilance"
ATTESTATION_FISCALE_RESOURCE_NAME = "v4/dgfip/unites_legales/%{id}/attestation_fiscale"
BILANS_BDF_RESOURCE_NAME = "v3/banque_de_france/unites_legales/%{id}/bilans"
PRIVILEGES_RESOURCE_NAME = "v2/privileges"
PRIVILEGES_RESOURCE_NAME = "privileges"
TIMEOUT = 20
DEFAULT_API_ENTREPRISE_DELAY = 0.0

View file

@ -300,7 +300,7 @@ describe APIEntreprise::API do
before do
api.token = token
stub_request(:get, "https://entreprise.api.gouv.fr/v2/privileges")
stub_request(:get, "https://entreprise.api.gouv.fr/privileges")
.to_return(body: body, status: status)
end

View file

@ -7,7 +7,7 @@ describe APIEntreprise::PrivilegesAdapter do
subject { adapter }
before do
stub_request(:get, "https://entreprise.api.gouv.fr/v2/privileges")
stub_request(:get, "https://entreprise.api.gouv.fr/privileges")
.to_return(body: body, status: status)
allow_any_instance_of(APIEntrepriseToken).to receive(:expired?).and_return(false)
end