X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/3f0ec839af28e56eb94bc9507ab59df1e670e59f..386e1eefaac2021805f73732b10e9f543c221593:/apps/workbench/config/routes.rb?ds=inline diff --git a/apps/workbench/config/routes.rb b/apps/workbench/config/routes.rb index badb471d64..a3644e5169 100644 --- a/apps/workbench/config/routes.rb +++ b/apps/workbench/config/routes.rb @@ -1,3 +1,7 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + ArvadosWorkbench::Application.routes.draw do themes_for_rails @@ -88,6 +92,8 @@ ArvadosWorkbench::Application.routes.draw do post 'unshare', :on => :member get 'choose', on: :collection post 'remove_selected_files', on: :member + get 'tags', on: :member + post 'save_tags', on: :member end get('/collections/download/:uuid/:reader_token/*file' => 'collections#show_file', format: false) @@ -120,6 +126,8 @@ ArvadosWorkbench::Application.routes.draw do root :to => 'projects#index' + match '/_health/ping', to: 'healthcheck#ping', via: [:get] + # Send unroutable requests to an arbitrary controller # (ends up at ApplicationController#render_not_found) match '*a', to: 'links#render_not_found', via: [:get, :post]