30d4b6d1f9
In kilo, the service type of sahara changed from data_processing to data-processing. We should be checking for both data-processing and data_processing service for backward compatability. Change-Id: I6f55938b7c9dedcacc2fd6ba27c14ecc4e8565e3 Closes-Bug: #1433816
29 lines
932 B
Python
29 lines
932 B
Python
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
# implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
import horizon
|
|
|
|
from openstack_dashboard.dashboards.project import dashboard
|
|
|
|
|
|
class WizardPanel(horizon.Panel):
|
|
name = _("Guides")
|
|
slug = 'data_processing.wizard'
|
|
permissions = (('openstack.services.data-processing',
|
|
'openstack.services.data_processing'),)
|
|
|
|
|
|
dashboard.Project.register(WizardPanel)
|