X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/2755c8e5060fc5f84c91e089b43d5019c84cd93b..3c73e2337ed73cd44e9bcc2d38a4dd742637ad19:/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 94ae8a95ea..4d78ca7ed9 100644 --- a/apps/workbench/app/controllers/workflows_controller.rb +++ b/apps/workbench/app/controllers/workflows_controller.rb @@ -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