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