diff options
author | Michael Elkins <melkins@tislabs.com> | 2011-01-22 16:39:48 +0000 |
---|---|---|
committer | Michael Elkins <melkins@tislabs.com> | 2011-01-22 16:39:48 +0000 |
commit | e84a4a71b033eb6fffce1c44a63d45babbecbf63 (patch) | |
tree | 544ac479afb3353420bfed3c00baf6380e6dbb76 /portal-gui/rpkigui/myrpki | |
parent | 7ae467df17dd1694dbf54e6f46d20dc6651ced8d (diff) |
revert back to using Django's built in authentication rather than HTTP Digest auth now that rpkidemo can log in via Django
svn path=/portal-gui/Makefile.in; revision=3634
Diffstat (limited to 'portal-gui/rpkigui/myrpki')
-rw-r--r-- | portal-gui/rpkigui/myrpki/views.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/portal-gui/rpkigui/myrpki/views.py b/portal-gui/rpkigui/myrpki/views.py index 206d334f..f15ebbdd 100644 --- a/portal-gui/rpkigui/myrpki/views.py +++ b/portal-gui/rpkigui/myrpki/views.py @@ -554,9 +554,4 @@ def upload_myrpki_xml(request, self_handle): return serve_file(self_handle, 'myrpki.xml', 'application/xml') -# apache is configured to set REMOTE_USER when the user visits /accounts/login/ -# simply redirect to the dashboard page since the user will already be logged in -def login(request): - return http.HttpResponseRedirect('/myrpki/') - # vim:sw=4 ts=8 expandtab |