Browse Source

Removed the siteminder debug page

pull/172/head
Michael Olund 5 years ago
parent
commit
cf0e20d77e
2 changed files with 0 additions and 20 deletions
  1. +0
    -16
      edivorce/apps/core/templates/localdev/debug.html
  2. +0
    -4
      edivorce/apps/core/views/system.py

+ 0
- 16
edivorce/apps/core/templates/localdev/debug.html View File

@ -1,16 +0,0 @@
<html>
<head>
<title>Debug</title>
</head>
<body>
{% for k, v in request.META.items %}
{% if k.isupper %}
{{ k }} = {{ v }}<br/>
{% endif %}
{% endfor %}
</body>
</html>

+ 0
- 4
edivorce/apps/core/views/system.py View File

@ -13,10 +13,6 @@ def health(request): # pylint: disable=unused-argument
return HttpResponse(Question.objects.count())
def headers(request):
return render(request, 'localdev/debug.html')
def current(request):
"""
Debug tool usable in dev and test environments, available at /current


Loading…
Cancel
Save