Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable volume backup create and restore button when not supported #4605

Merged
merged 1 commit into from
Sep 6, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class ApplicationHelper::Button::CloudVolumeBackupCreate < ApplicationHelper::Button::ButtonNewDiscover
def disabled?
ManageIQ::Providers::CloudManager.all.none? { |ems| ems.class::CloudVolume.supports?(:backup_create) }
end
end
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class ApplicationHelper::Button::CloudVolumeBackupRestore < ApplicationHelper::Button::ButtonNewDiscover
def disabled?
ManageIQ::Providers::CloudManager.all.none? { |ems| ems.class::CloudVolume.supports?(:backup_restore) }
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ class ApplicationHelper::Toolbar::CloudVolumesCenter < ApplicationHelper::Toolba
'pficon pficon-volume fa-lg',
t = N_('Create a Backup of selected Cloud Volume'),
t,
:klass => ApplicationHelper::Button::CloudVolumeBackupCreate,
:url_parms => 'main_div',
:send_checked => true,
:enabled => false,
Expand All @@ -29,6 +30,7 @@ class ApplicationHelper::Toolbar::CloudVolumesCenter < ApplicationHelper::Toolba
'pficon pficon-volume fa-lg',
t = N_('Restore from a Backup of selected Cloud Volume'),
t,
:klass => ApplicationHelper::Button::CloudVolumeBackupRestore,
:url_parms => 'main_div',
:send_checked => true,
:enabled => false,
Expand Down