4951: Rearrange js to make use of Rails built-ins. Add generic AJAX error handler.
[arvados.git] / apps / workbench / app / controllers / pipeline_templates_controller.rb
index fdbebcfaed2cb5b2d68192a8d63ff56ceee358c1..83ab88f6122dd1e5234bb12e4978fbabe89b263f 100644 (file)
@@ -1,2 +1,17 @@
 class PipelineTemplatesController < ApplicationController
+  skip_around_filter :require_thread_api_token, if: proc { |ctrl|
+    Rails.configuration.anonymous_user_token and
+    'show' == ctrl.action_name
+  }
+
+  include PipelineComponentsHelper
+
+  def show
+    @objects = PipelineInstance.where(pipeline_template_uuid: @object.uuid)
+    super
+  end
+
+  def show_pane_list
+    %w(Components Pipelines Advanced)
+  end
 end