github.com/benoitkugler/goacve@v0.0.0-20201217100549-151ce6e55dc8/server/core/apiserver/urls.go (about) 1 package apiserver 2 3 const ( 4 UrlPersonnes = "/personnes" 5 UrlOrganismes = "/organismes" 6 UrlDocumentsMiniatures = "/documents/miniatures" 7 UrlDocumentsTransfert = "/documents/transfert" 8 UrlDocuments = "/documents" 9 UrlAides = "/aides" 10 UrlStructureaides = "/structure_aides" 11 UrlCamps = "/camps" 12 UrlParticipants = "/participants" 13 UrlParticipantsimples = "/participantsimples" 14 UrlEquipiers = "/equipiers" 15 UrlDB = "/db" 16 UrlUsers = "/users" 17 UrlDons = "/dons" 18 UrlRecuFiscal = "/dons/recu" 19 UrlDonsHelloasso = "/dons/helloasso" 20 UrlInscriptions = "/inscriptions" 21 UrlValideInscriptions = "/inscriptions/valide" 22 UrlPaiements = "/paiements" 23 UrlPaiementsBordereau = "/paiements/bordereau" 24 UrlFactures = "/factures" 25 UrlFacturesFusion = "/factures/fusion" 26 UrlIdentifieEquipier = "/identifie/equipier" 27 UrlIdentifieParticipant = "/identifie/participant" 28 UrlIdentifieResponsable = "/identifie/responsable" 29 UrlIdentifieParticipantsimple = "/identifie/participantsimple" 30 31 UrlNotifieMessage = "/factures/notifie" 32 UrlNotifieMessagePerso = "/factures/notifie/message" 33 34 UrlMessages = "/messages" 35 36 UrlNotifieMessagePersos = "/factures/notifie/messages" 37 UrlNotifiePlaceLiberee = "/factures/notifie/place_liberee" 38 UrlNotifieAttestation = "/factures/notifie/attestation" 39 UrlNotifieDocuments = "/factures/notifie/documents" 40 UrlNotifieSondages = "/factures/notifie/sondages" 41 UrlDeleteMessages = "/messages/delete" 42 43 // UrlMailsAccuseReception = "/factures/mails/accuse_reception" 44 // UrlMailsFacture = "/factures/mails/facture" 45 // UrlMailsAttestations = "/factures/mails/attestations" 46 // UrlMailsRIB = "/factures/mails/RIB" 47 UrlMailsSimple = "/simple_mail" 48 49 UrlUpdate = "/logiciel/update" 50 51 BasicAuthUsername = "acve_gestion" 52 )