Fix 2.4.2 upgrade notes formatting refs #19330
[arvados.git] / apps / workbench / app / controllers / workflows_controller.rb
index 94ae8a95ea719eb0845d5e53179bee11d050da63..4d78ca7ed92f834086b91c6f83a04d31ea2e94b1 100644 (file)
@@ -1,2 +1,14 @@
+# Copyright (C) The Arvados Authors. All rights reserved.
+#
+# SPDX-License-Identifier: AGPL-3.0
+
 class WorkflowsController < ApplicationController
+  skip_around_action :require_thread_api_token, if: proc { |ctrl|
+    !Rails.configuration.Users.AnonymousUserToken.empty? and
+    'show' == ctrl.action_name
+  }
+
+  def show_pane_list
+    %w(Definition Advanced)
+  end
 end