X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/8a84fd1883edc4afe7aadde46954048668dbf416..2f8df060079db30ec690a1ca5f1e06f2547ce757:/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..b7f99e855e 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| + skip_around_action :require_thread_api_token, if: proc { |ctrl| Rails.configuration.anonymous_user_token and 'show' == ctrl.action_name } + + def show_pane_list + %w(Definition Advanced) + end end