% uuid_map = {} [@users, @groups].each do |obj_list| obj_list.each { |o| uuid_map[o.uuid] = o } end perm_name_desc_map = {} perm_desc_name_map = {} perms_json = [] ['Read', 'Write', 'Manage'].each do |link_desc| link_name = "can_#{link_desc.downcase}" perm_name_desc_map[link_name] = link_desc perm_desc_name_map[link_desc] = link_name perms_json << {value: link_name, text: link_desc} end perms_json = perms_json.to_json owner_icon = fa_icon_class_for_uuid(@object.owner_uuid) if owner_icon == "fa-users" owner_icon = "fa-folder" owner_type = "parent project" else owner_type = "owning user" end %>
Permissions for this project are inherited from the <%= owner_type %> <%= link_to_if_arvados_object @object.owner_uuid, friendly_name: true %>.
User/Group Name | Project Access | |
---|---|---|
<%= link_to_if_arvados_object(link.tail_uuid, link_text: link_name) %> | <%= link_to perm_name_desc_map[link.name], '#', { "data-emptytext" => "Read", "data-placement" => "bottom", "data-type" => "select", "data-url" => url_for(action: "update", id: link.uuid, controller: "links", merge: true), "data-title" => "Set #{link_name}'s access level", "data-name" => "[name]", "data-pk" => {id: link.tail_uuid, key: "link"}.to_json, "data-value" => link.name, "data-clear" => false, "data-source" => perms_json, "data-tpl" => "", "class" => "editable form-control", } %> | <%= link_to( {action: 'destroy', id: link.uuid, controller: "links"}, {title: 'Revoke', class: 'btn btn-default btn-nodecorate', method: :delete, data: {confirm: "Revoke #{link_name}'s access to this project?", remote: true}}) do %> <% end %> |