ManageIQ/manageiq-ui-classic

View on GitHub
app/helpers/application_helper/button/rbac_group_delete.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
class ApplicationHelper::Button::RbacGroupDelete < ApplicationHelper::Button::Basic
  needs :@record

  def disabled?
    @error_message = _('This Group is Read Only and can not be deleted') if @record.read_only
    @error_message.present?
  end
end