18 lines
735 B
Ruby
18 lines
735 B
Ruby
# API URLs
|
|
API_ADRESSE_URL = "https://api-adresse.data.gouv.fr"
|
|
API_CARTO_URL = "https://apicarto.sgmap.fr"
|
|
API_ENTREPRISE_URL = "https://entreprise.api.gouv.fr/v2"
|
|
API_GEO_URL = "https://geo.api.gouv.fr"
|
|
HELPSCOUT_API_URL = "https://api.helpscout.net/v2"
|
|
PIPEDRIVE_API_URL = "https://api.pipedrive.com/v1"
|
|
|
|
# Internal URLs
|
|
FOG_BASE_URL = "https://storage.apientreprise.fr"
|
|
|
|
# External services URLs
|
|
DOC_URL = "https://doc.demarches-simplifiees.fr"
|
|
LISTE_DES_DEMARCHES_URL = [DOC_URL, "listes-des-demarches"].join("/")
|
|
CGU_URL = [DOC_URL, "cgu"].join("/")
|
|
MENTIONS_LEGALES_URL = [CGU_URL, "4-mentions-legales"].join("#")
|
|
API_DOC_URL = [DOC_URL, "pour-aller-plus-loin", "api"].join("/")
|
|
FAQ_URL = "https://faq.demarches-simplifiees.fr"
|