-
Notifications
You must be signed in to change notification settings - Fork 900
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
Use supports in more instances #21989
Comments
This issue has been automatically marked as stale because it has not been updated for at least 3 months. If you can still reproduce this issue on the current release or on Thank you for all your contributions! More information about the ManageIQ triage process can be found in the triage process documentation. |
brought console_supported up to date. |
This issue has been automatically marked as stale because it has not been updated for at least 3 months. If you can still reproduce this issue on the current release or on Thank you for all your contributions! More information about the ManageIQ triage process can be found in the triage process documentation. |
This issue has been automatically closed because it has not been updated for at least 3 months. Feel free to reopen this issue if this issue is still valid. Thank you for all your contributions! More information about the ManageIQ triage process can be found in the triage process documentation. |
This issue has been automatically marked as stale because it has not been updated for at least 3 months. If you can still reproduce this issue on the current release or on |
This issue has been automatically marked as stale because it has not been updated for at least 3 months. If you can still reproduce this issue on the current release or on |
This is a continuation from #21179
We have a number if implementations that are basically a reimplementation of
SupportsMixin
.Convert these implementations over to using supports
supports_authentication()
tosupports
supports_pxe
tosupports :pxe
along withiso
,cloud_init
,sysprep
,customization_template
.kind_of?
from Button classes.ChargebackVm.extra_resources_without_rollups
hard-coding SCVMM VMs #22288supports :smartstate_analasys
to basic implementation (as seen in storage.rb)supports?(feature)
to work without requiringsupports_not
#22578check_feature_support(:feature)
and replace withsupports?(feature)
- beware of the false, nil coming back.unsupported_reason() unless supports?()
=>unsupported_reason()
review:
The text was updated successfully, but these errors were encountered: