From 1b95f57f5ea6c05e8dead5c6fe8b4ede0ed3a00e Mon Sep 17 00:00:00 2001 From: Anthony Michon Date: Wed, 5 Aug 2015 13:54:27 +0200 Subject: [PATCH] Allow user non admin to see heldesk panel Change-Id: Ic0bf9e244a8c441ceb29b39b6fb109231d24464f --- setup.cfg | 1 - sticksdashboard/tickets/panel.py | 1 - 2 files changed, 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index 07501d1..b1e4de4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -5,7 +5,6 @@ description-file = README.rst author = OpenStack author-email = openstack-dev@lists.openstack.org -version = 1.2-1 home-page = http://www.openstack.org/ classifier = Environment :: OpenStack diff --git a/sticksdashboard/tickets/panel.py b/sticksdashboard/tickets/panel.py index 382ed20..f102914 100644 --- a/sticksdashboard/tickets/panel.py +++ b/sticksdashboard/tickets/panel.py @@ -23,6 +23,5 @@ from sticksdashboard import dashboard class TicketsPanel(horizon.Panel): name = _("Tickets") slug = 'tickets' - permissions = ('openstack.roles.admin',) dashboard.Sticks.register(TicketsPanel)