horizon/openstack_dashboard/static/dashboard/dashboard.module.js
Richard Jones 742cb8a679 ngReorg - move dashboard controllers from horizon
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
2015-06-06 04:31:34 +00:00

13 lines
230 B
JavaScript

(function () {
'use strict';
angular.module('hz.dashboard', [
'hz.dashboard.launch-instance',
'hz.dashboard.tech-debt',
'hz.dashboard.workflow'
])
.constant('dashboardBasePath', '/static/dashboard/');
})();