Sha256: 8da8467a065ba0b9b3d0021751804774cbbe53694117301c82ab11a23f2324a7
Contents?: true
Size: 935 Bytes
Versions: 37
Compression:
Stored size: 935 Bytes
Contents
module Support class DummyDynflowAction < Actions::EntryAction end class DummyPauseAction < Actions::EntryAction def plan plan_action(DummyPauseActionWithCustomTroubleshooting) plan_self end def run error! "This is an error" end end class DummyPauseActionWithCustomTroubleshooting < Actions::EntryAction def run error! "This is an error" end def troubleshooting_info ForemanTasks::TroubleshootingHelpGenerator::Info.new.tap do |i| i.add_line _('This task requires special handling.') i.add_link(ForemanTasks::TroubleshootingHelpGenerator::Link.new( name: :custom_link, title: _('custom link'), href: "/additional_troubleshooting_page", description: _("Investigate %{link} on more details for this custom error.") )) end end end end
Version data entries
37 entries across 37 versions & 1 rubygems