Free and open source ticket system written in python
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

remove print

-1
-1
ticketing/models.py
··· 115 115 return True 116 116 assigned_and_write_access = self.assigned_team in user.team_set.filter(readonly_access=False) or self.assigned_to == user 117 117 unassigned_and_write_access = self.assigned_team is None and user.team_set.filter(access_non_category_tickets=True, readonly_access=False).exists() 118 - print(assigned_and_write_access, unassigned_and_write_access) 119 118 return self.can_open(user) and (assigned_and_write_access or unassigned_and_write_access) 120 119 121 120