X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/5dbf5c8ea2d9eb2bc8e10a03ca625f12ed71f12c..42c20b25e1325124b88e3b9b285544dc41122b56:/apps/workbench/app/views/application/_show_sharing.html.erb diff --git a/apps/workbench/app/views/application/_show_sharing.html.erb b/apps/workbench/app/views/application/_show_sharing.html.erb index 4b7beb3059..75773ab900 100644 --- a/apps/workbench/app/views/application/_show_sharing.html.erb +++ b/apps/workbench/app/views/application/_show_sharing.html.erb @@ -1,9 +1,15 @@ +<%# Copyright (C) The Arvados Authors. All rights reserved. + +SPDX-License-Identifier: AGPL-3.0 %> + <% uuid_map = {} if @share_links [User, Group].each do |type| type .filter([['uuid','in',@share_links.collect(&:tail_uuid)]]) + .with_count("none") + .fetch_multiple_pages(false) .each do |o| uuid_map[o.uuid] = o end @@ -22,7 +28,7 @@ choose_filters = { "groups" => [["group_class", "=", "role"]], } - if not Rails.configuration.anonymous_user_token + if Rails.configuration.Users.AnonymousUserToken.empty? # It would be ideal to filter out the anonymous group by UUID, # but that's not readily doable. Workbench can't generate the # UUID for a != filter, because it can't introspect the API @@ -48,6 +54,7 @@ <%= link_to(send("choose_#{share_class}_path", title: "Share with #{share_class}", + message: "Only #{share_class} you are allowed to access are shown. Please contact your administrator if you need to be added to a specific group.", by_project: false, preview_pane: false, multiple: true, @@ -68,6 +75,12 @@ <%= link_to_if_arvados_object @object.owner_uuid, friendly_name: true %>.

+<% if @object.is_a? Repository %> +

+ Please note that changes to git repository sharing may take up to two minutes to take effect. +

+<% end %> +
User/Group Name