Skip to content
This repository has been archived by the owner on Oct 3, 2023. It is now read-only.

feat: Changed all occurence of contact email to membersport email #207

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tapiriik/web/templates/static/contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@

{% block content %}
<p>{% trans "If you are having issues with your account" %}, <b>{% trans "please check" %} <a href="{% url 'activities_dashboard' %}">{% trans "the activity dashboard" %}</a></b> - {% trans "it'll do its best to tell you what went wrong" %}.</p>
<a href="mailto:infra@decathloncoach.com{% if user %}?body=My Hub by DECATHLON user ID is {{ user|dict_get:'_id' }}{% endif %}" target="_blank" class="large">infra@decathloncoach.com</a>
<a href="mailto:membersport@decathlon.com{% if user %}?body=My Hub by DECATHLON user ID is {{ user|dict_get:'_id' }}{% endif %}" target="_blank" class="large">membersport@decathlon.com</a>
<p>{% trans "If you are making an enquiry regarding the European Union's General Data Protection Regulation, please mention &quot;GDPR&quot; in the subject line." %}</p>
{% endblock %}
2 changes: 1 addition & 1 deletion tapiriik/web/views/diagnostics.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand Down