Skip to content

Commit

Permalink
Allow administration with TICKET_ADMIN - do not require TRAC_ADMIN
Browse files Browse the repository at this point in the history
  • Loading branch information
ejucovy committed Apr 30, 2017
1 parent b5507d9 commit 8dd98b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflow_notification/__init__.py
Expand Up @@ -24,7 +24,7 @@ def get_admin_panels(self, req):
The items returned by this function must be tuples of the form
`(category, category_label, page, page_label)`.
"""
if req.perm.has_permission('TRAC_ADMIN'):
if req.perm.has_permission('TICKET_ADMIN'):
yield ('ticket', 'Ticket System',
"workflow_notification", "Workflow Notifications")

Expand Down

0 comments on commit 8dd98b6

Please sign in to comment.