Merge branch 'master' into 3889-functional-testing
[arvados.git] / apps / workbench / app / models / link.rb
index 868082b3ed9980652c24a9bc9eae451c620f0dd5..271fa0f0103eac4e3197d417ffc31430285b6643 100644 (file)
@@ -8,4 +8,14 @@ class Link < ArvadosBase
   def default_name
     self.class.resource_class_for_uuid(head_uuid).default_name rescue super
   end
+
+  def self.permissions_for(thing)
+    if thing.respond_to? :uuid
+      uuid = thing.uuid
+    else
+      uuid = thing
+    end
+    result = arvados_api_client.api("permissions", "/#{uuid}")
+    arvados_api_client.unpack_api_response(result)
+  end
 end