Merge branch '12195-nodemanager-quota-error'
[arvados.git] / apps / workbench / app / helpers / application_helper.rb
index 42215eefb0781f4d5706e12f9304ba9f4a3d38a0..57b8d8780c6859e9063cabb7c43cfcb30a14d6bf 100644 (file)
@@ -1,3 +1,7 @@
+# Copyright (C) The Arvados Authors. All rights reserved.
+#
+# SPDX-License-Identifier: AGPL-3.0
+
 module ApplicationHelper
   def current_user
     controller.current_user
@@ -670,9 +674,10 @@ module ApplicationHelper
     render_runtime duration, use_words, round_to_min
   end
 
-  MOUNT_INPUT_KEEP_LOCATOR_REGEXP = /(.*)(([0-9a-f]{32}\+\d+)(.*)\"(.*))/
-  def mount_input_keep_locator str
-    MOUNT_INPUT_KEEP_LOCATOR_REGEXP.match str
+  # Keep locators are expected to be of the form \"...<pdh/file_path>\"
+  JSON_KEEP_LOCATOR_REGEXP = /(.*)(([0-9a-f]{32}\+\d+)(.*)\"(.*))/
+  def keep_locator_in_json str
+    JSON_KEEP_LOCATOR_REGEXP.match str
   end
 
 private