From d8788504e83247020d6cc9958f53f43a42332aa2 Mon Sep 17 00:00:00 2001 From: kevforget <74352754+kevforget@users.noreply.github.com> Date: Wed, 5 Oct 2022 09:48:36 +0200 Subject: [PATCH] feat: Changed all occurence of contact email to membersport email (#207) --- tapiriik/web/templates/static/contact.html | 2 +- tapiriik/web/views/diagnostics.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tapiriik/web/templates/static/contact.html b/tapiriik/web/templates/static/contact.html index 1930691b..654027e1 100644 --- a/tapiriik/web/templates/static/contact.html +++ b/tapiriik/web/templates/static/contact.html @@ -9,6 +9,6 @@ {% block content %}

{% trans "If you are having issues with your account" %}, {% trans "please check" %} {% trans "the activity dashboard" %} - {% trans "it'll do its best to tell you what went wrong" %}.

-infra@decathloncoach.com +membersport@decathlon.com

{% trans "If you are making an enquiry regarding the European Union's General Data Protection Regulation, please mention "GDPR" in the subject line." %}

{% endblock %} \ No newline at end of file diff --git a/tapiriik/web/views/diagnostics.py b/tapiriik/web/views/diagnostics.py index ea03c090..041e8111 100644 --- a/tapiriik/web/views/diagnostics.py +++ b/tapiriik/web/views/diagnostics.py @@ -168,7 +168,7 @@ def server_status_elb(req): def server_securitytxt(request): lines = [ "# We strongly appreciate exchange about security for the users", - "Contact: mailto:infra@decathloncoach.com", + "Contact: mailto:membersport@decathlon.com", ] return HttpResponse("\n".join(lines), content_type="text/plain")