Skip to content

Commit a259a1f

Browse files
authored
Merge pull request #62 from phoenixlan/issue/fix61
Added missing permission 'user_list_purchased_tickets' to users who wants to view their own tickets
2 parents b710762 + 985de9d commit a259a1f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

phoenixRest/views/user/instance/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ def __acl__(self):
121121
(Allow, "%s" % self.userInstance.uuid, 'get_friendship_states'),
122122
# Users can fetch their own tickets
123123
(Allow, "%s" % self.userInstance.uuid, 'user_list_owned_tickets'),
124+
(Allow, "%s" % self.userInstance.uuid, 'user_list_purchased_tickets'),
124125
(Allow, "%s" % self.userInstance.uuid, 'user_list_seatable_tickets'),
125126
# Users can see their own ticket transfers
126127
(Allow, "%s" % self.userInstance.uuid, 'user_list_ticket_transfers'),

0 commit comments

Comments
 (0)