Merge branch 'master' into 6203-collection-perf-api
[arvados.git] / apps / workbench / app / models / group.rb
index a91b729c86d1ba12220a5813da75ba2b7a44172f..3f5da155c4ca9fc5ea13d0836551a92c3c11d435 100644 (file)
@@ -3,6 +3,10 @@ class Group < ArvadosBase
     true
   end
 
+  def self.copies_to_projects?
+    false
+  end
+
   def self.contents params={}
     res = arvados_api_client.api self, "/contents", {
       _method: 'GET'
@@ -25,12 +29,6 @@ class Group < ArvadosBase
     group_class == 'project' ? 'Project' : super
   end
 
-  def editable?
-    respond_to?(:writable_by) and
-      writable_by and
-      writable_by.index(current_user.uuid)
-  end
-
   def textile_attributes
     [ 'description' ]
   end