diff options
author | 2018-05-15 14:40:11 +0100 | |
---|---|---|
committer | 2018-05-15 14:40:11 +0100 | |
commit | af412314eaba6a955b364da2ff7e4dbfb8eb7003 (patch) | |
tree | 9f9e7a1ac2d0db240c56569de6a964969eb10505 /pysite/route_manager.py | |
parent | Update font-awesome to 5.0.13 (diff) |
Add TemplateView class for views that only render a template
Diffstat (limited to 'pysite/route_manager.py')
-rw-r--r-- | pysite/route_manager.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pysite/route_manager.py b/pysite/route_manager.py index a666ce09..764049cd 100644 --- a/pysite/route_manager.py +++ b/pysite/route_manager.py @@ -8,7 +8,7 @@ from flask_dance.contrib.discord import make_discord_blueprint from flask_sockets import Sockets from gunicorn_config import _when_ready as when_ready -from pysite.base_route import APIView, BaseView, ErrorView, RouteView +from pysite.base_route import APIView, BaseView, ErrorView, RouteView, TemplateView from pysite.constants import ( CSRF, DEBUG_MODE, DISCORD_OAUTH_AUTHORIZED, DISCORD_OAUTH_ID, DISCORD_OAUTH_REDIRECT, DISCORD_OAUTH_SCOPE, DISCORD_OAUTH_SECRET, PREFERRED_URL_SCHEME) @@ -131,6 +131,7 @@ class RouteManager: cls is not RouteView and cls is not APIView and cls is not WS and + cls is not TemplateView and ( BaseView in cls.__mro__ or WS in cls.__mro__ |