Sha256: 7b1881e92c1225b17ffe65db2ea8271374039377e2b1a576898c5868e5c202e2
Contents?: true
Size: 930 Bytes
Versions: 55
Compression:
Stored size: 930 Bytes
Contents
module Support class DummyDynflowAction < Dynflow::Action 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
55 entries across 55 versions & 1 rubygems