Skip to content
Snippets Groups Projects
Commit 4d451f45 authored by Todd Dembrey's avatar Todd Dembrey
Browse files

update the dispatcher to look at the delegated user method

parent d66b5792
No related branches found
No related tags found
No related merge requests found
......@@ -2,8 +2,6 @@ from django.contrib.auth.decorators import login_required
from django.utils.decorators import method_decorator
from django.views.generic import DetailView, View
from opentech.apply.users.groups import STAFF_GROUP_NAME
@method_decorator(login_required, name='dispatch')
class ViewDispatcher(View):
......@@ -11,7 +9,7 @@ class ViewDispatcher(View):
applicant_view = None
def dispatch(self, request, *args, **kwargs):
if request.user.groups.filter(name=STAFF_GROUP_NAME).exists():
if request.user.is_apply_staff:
view = self.admin_view
else:
view = self.applicant_view
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment