Merge "Rename pool-flavors module"

This commit is contained in:
Jenkins 2017-07-02 22:32:42 +00:00 committed by Gerrit Code Review
commit b666dce0ca
5 changed files with 4 additions and 4 deletions

View File

@ -19,4 +19,4 @@ import horizon
class PoolFlavors(horizon.Panel):
name = _("Pool Flavors")
slug = "pool-flavors"
slug = "pool_flavors"

View File

@ -12,11 +12,11 @@
# See the License for the specific language governing permissions and
# limitations under the License.
PANEL = 'pool-flavors'
PANEL = 'pool_flavors'
PANEL_GROUP = 'messaging'
PANEL_DASHBOARD = 'admin'
ADD_PANEL = ('zaqar_ui.content.pool-flavors.panel.PoolFlavors')
ADD_PANEL = ('zaqar_ui.content.pool_flavors.panel.PoolFlavors')
ADD_ANGULAR_MODULES = ['horizon.dashboard.admin.pool-flavors']
ADD_SCSS_FILES = ['dashboard/admin/pool-flavors/pool-flavors.scss']

View File

@ -94,7 +94,7 @@
var path = $windowProvider.$get().STATIC_URL + 'dashboard/admin/pool-flavors/';
$provide.constant('horizon.dashboard.admin.pool-flavors.basePath', path);
$routeProvider.when('/admin/pool-flavors', {
$routeProvider.when('/admin/pool_flavors', {
templateUrl: path + 'panel.html'
});
}