X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/c1ac820b37938e3b9a533d93b55eb12a0808cf0d..be93d1d225ca8d4bccf08d9203d456b5d32dc07b:/apps/workbench/app/controllers/workflows_controller.rb diff --git a/apps/workbench/app/controllers/workflows_controller.rb b/apps/workbench/app/controllers/workflows_controller.rb index a3ba7d66a5..4d78ca7ed9 100644 --- a/apps/workbench/app/controllers/workflows_controller.rb +++ b/apps/workbench/app/controllers/workflows_controller.rb @@ -1,6 +1,14 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + class WorkflowsController < ApplicationController - skip_around_filter :require_thread_api_token, if: proc { |ctrl| - Rails.configuration.anonymous_user_token and + 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