d0182f2493
Rename all uses of 'hz.dashboard' in Angular code to 'horizon.dashboard'. There are two main reasons for this change: 1. This is consistent with the pattern used for the horizon framework (horizon.framework) 2. This aligns with the directory structure. 'horizon' is a directory name and maps to /horizon and indicates that the component is part of the horizon project. The abbreviation 'hz' is now only used for legacy code. Change-Id: Ic22d6b0819ed62b3af2656fcb167b08ac55857c2 Partial-Bug: 1478717
31 lines
1.1 KiB
Python
31 lines
1.1 KiB
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.
|
|
|
|
# The slug of the dashboard to be added to HORIZON['dashboards']. Required.
|
|
DASHBOARD = 'identity'
|
|
# If set to True, this dashboard will be set as the default dashboard.
|
|
DEFAULT = False
|
|
# A dictionary of exception classes to be added to HORIZON['exceptions'].
|
|
ADD_EXCEPTIONS = {}
|
|
# A list of applications to be added to INSTALLED_APPS.
|
|
ADD_INSTALLED_APPS = ['openstack_dashboard.dashboards.identity']
|
|
|
|
ADD_ANGULAR_MODULES = [
|
|
'horizon.dashboard.identity',
|
|
]
|
|
|
|
AUTO_DISCOVER_STATIC_FILES = True
|
|
|
|
ADD_SCSS_FILES = [
|
|
'dashboard/identity/identity.scss'
|
|
]
|