From fad06ab1c1096e1b5f36efb634cf443397c98a42 Mon Sep 17 00:00:00 2001 From: James Tauber Date: Fri, 3 Aug 2012 01:24:43 -0400 Subject: [PATCH] staff can't apply unless it's by application --- symposion/teams/views.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/symposion/teams/views.py b/symposion/teams/views.py index 809638ed..6485465f 100644 --- a/symposion/teams/views.py +++ b/symposion/teams/views.py @@ -36,8 +36,6 @@ def can_apply(team, user): state = team.get_state_for_user(user) if team.access == "application" and state is None: return True - elif user.is_staff and state is None: - return True else: return False