1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-01-11 05:17:41 +03:00

B #5313 Solved bug in vCenter cloud view (VM creation) (#439)

This commit is contained in:
Abel Coronado 2017-09-05 13:01:22 +02:00 committed by Tino Vázquez
parent ea9a4c4b60
commit 7b587cd1a5
3 changed files with 7 additions and 1 deletions

View File

@ -23,6 +23,9 @@ features:
# True to show the option to make an instance persistent
instantiate_persistent: true
# True to allow to create machines to cloud users
cloud_vm_create: true
tabs:
provision-tab:
panel_tabs:

View File

@ -23,6 +23,9 @@ features:
# True to show the option to make an instance persistent
instantiate_persistent: true
# True to allow to create machines to cloud users
cloud_vm_create: true
tabs:
provision-tab:
panel_tabs:

View File

@ -305,7 +305,7 @@ define(function(require) {
if (Config.provision.dashboard.isEnabled("vms")) {
$("#provision_dashboard").append(TemplateDashboardVms());
if(!Config.isProvisionTabEnabled("provision-tab", "templates")){
if(!Config.isFeatureEnabled("cloud_vm_create")){
$('.provision_create_vm_button').hide();
}