From 52ffe2505ad49560c8b3ba4625323581ba67d954 Mon Sep 17 00:00:00 2001 From: "Adrien Bourmault (neox)" Date: Sat, 4 Nov 2023 14:25:13 +0100 Subject: [PATCH] adhesion: changement d'API --- controle_adhesion/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/controle_adhesion/main.py b/controle_adhesion/main.py index e533a7e..b6eb3cb 100755 --- a/controle_adhesion/main.py +++ b/controle_adhesion/main.py @@ -257,7 +257,7 @@ def validate_registrations_worker(): BUF.append("=> MEMBRE VALIDE PAR SECRETARIAT <=") # Launch git tickets - title = "Création d'un compte courriel membre n°{}.".format(numero) + title = "Création d'un compte courriel membre n°{}".format(numero) body = "Bonjour,\n Une demande de création de compte de" \ + "courriel ou une redirection a été émise.\n\n" \ + "Compte de courriel actuel : {} \n".format( @@ -285,7 +285,7 @@ def validate_registrations_worker(): + "Compte de XMPP désiré : {} \n".format( member['email']) labels = [970] - ticket_response = forgejo_post_issue("cominfra", "mail", title, body, labels) + ticket_response = forgejo_post_issue("cominfra", "xmpp", title, body, labels) if not "id" in str(ticket_response.json()): BUF.append("Validation échouée : ticket git XMPP en erreur : {}".format( ticket_response