allow guest login

This commit is contained in:
Seth Ladygo
2019-03-13 21:00:36 -07:00
parent 0db088d8f9
commit 16c004e291
4 changed files with 15 additions and 3 deletions

View File

@ -8,6 +8,6 @@ from lazysignup.decorators import allow_lazy_user
from account.decorators import login_required
@allow_lazy_user
@login_required
def dashboard(request):
return render(request, 'dashboard/dashboard.html')