19144: Resets storage_classes_confirmed* fields on WB1 copy action.
[arvados.git] / apps / workbench / app / controllers / containers_controller.rb
index 57c27003c1a6f4a437b52931fd12c94d6ed80454..4b5606778f409f072fd44e4449200eb73ed788d0 100644 (file)
@@ -1,2 +1,14 @@
+# Copyright (C) The Arvados Authors. All rights reserved.
+#
+# SPDX-License-Identifier: AGPL-3.0
+
 class ContainersController < 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(Status Log Advanced)
+  end
 end