Merge branch '15795-sys-root-token' refs #15795
[arvados.git] / apps / workbench / app / models / job_work_unit.rb
index 42a39fcdfd4747323f59915295d6fcbcb03a892f..83825a533849fea023482d12bafeac8c88db76d8 100644 (file)
@@ -1,3 +1,7 @@
+# Copyright (C) The Arvados Authors. All rights reserved.
+#
+# SPDX-License-Identifier: AGPL-3.0
+
 class JobWorkUnit < ProxyWorkUnit
   def children
     return @my_children if @my_children
@@ -81,6 +85,15 @@ class JobWorkUnit < ProxyWorkUnit
     state_label.in? ["Queued", "Running"]
   end
 
+  def confirm_cancellation
+    "All unfinished child jobs and pipelines will also be canceled, even if they are being used in another job or pipeline. Are you sure you want to cancel this job?"
+  end
+
+  def uri
+    uuid = get(:uuid)
+    "/jobs/#{uuid}"
+  end
+
   def title
     "job"
   end