diff options
author | 2018-03-29 10:52:48 +0100 | |
---|---|---|
committer | 2018-03-29 10:52:48 +0100 | |
commit | 0073f9ea6821a43aea9437707586af04dc0cbed2 (patch) | |
tree | 021b97e835f776796223cdec8f587cf17597cd5e /pysite/views/main/index.py | |
parent | Add PREFERRED_URL_SCHEME env var to fix `url_for()` (diff) |
Attempt to fix HTTPS and more OAuth issues
Diffstat (limited to 'pysite/views/main/index.py')
-rw-r--r-- | pysite/views/main/index.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pysite/views/main/index.py b/pysite/views/main/index.py index 8d0cb349..210eb057 100644 --- a/pysite/views/main/index.py +++ b/pysite/views/main/index.py @@ -1,6 +1,5 @@ # coding=utf-8 from pysite.base_route import RouteView -from pysite.constants import DISCORD_OAUTH_REDIRECT class IndexView(RouteView): @@ -8,4 +7,4 @@ class IndexView(RouteView): name = "index" def get(self): - return self.render("main/index.html", login_url=DISCORD_OAUTH_REDIRECT) + return self.render("main/index.html") |