Secure document fetching

This commit is contained in:
Jeff Bogatay 2016-08-23 11:31:54 -04:00 committed by Daniel Quinn
parent 5662035efd
commit 05f3cad271
2 changed files with 3 additions and 1 deletions

View File

@ -31,7 +31,7 @@ class IndexView(TemplateView):
return TemplateView.get_context_data(self, **kwargs)
class FetchView(DetailView):
class FetchView(LoginRequiredMixin, DetailView):
model = Document

View File

@ -27,6 +27,8 @@ SECRET_KEY = 'e11fl1oa-*ytql8p)(06fbj4ukrlo+n7k&q5+$1md7i+mge=ee'
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
LOGIN_URL = '/admin/login'
ALLOWED_HOSTS = []