742cb8a679
This change moves the controller ImageFormCtrl and hzNamespaceResourceTypeFormController from horizon (the framework) to openstack_dashboard (the application) where they belong. Co-Authored-By: Tyr Johanson <tyr@hp.com> Change-Id: I2309f0867c2f657a6065003475dcb10448f907bc Partial-Bug: #1458697
28 lines
976 B
Python
28 lines
976 B
Python
# Copyright 2015, Rackspace, US, Inc.
|
|
#
|
|
# 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 = 'admin'
|
|
|
|
# A list of applications to be added to INSTALLED_APPS.
|
|
ADD_INSTALLED_APPS = [
|
|
'openstack_dashboard.dashboards.admin',
|
|
]
|
|
|
|
ADD_JS_FILES = [
|
|
'dashboard/tech-debt/tech-debt.module.js',
|
|
'dashboard/tech-debt/namespace-controller.js',
|
|
'dashboard/tech-debt/image-form-controller.js',
|
|
]
|