11501: Simplified helper method call. Changed wording of run time description.
[arvados.git] / apps / workbench / app / models / user.rb
index 967ea2ad7d238aebfc9f8df1d4b6e171949479cf..8df16f29a44f84ed540ad1c292e9ee5e92da54e4 100644 (file)
@@ -35,8 +35,9 @@ class User < ArvadosBase
     super.reject { |k,v| %w(owner_uuid default_owner_uuid identity_url prefs).index k }
   end
 
-  def attribute_editable? attr, *args
-    (not (self.uuid.andand.match(/000000000000000$/) and self.is_admin)) and super
+  def attribute_editable?(attr, ever=nil)
+    (ever or not (self.uuid.andand.match(/000000000000000$/) and
+                  self.is_admin)) and super
   end
 
   def friendly_link_name lookup=nil
@@ -59,4 +60,11 @@ class User < ArvadosBase
                                                params))
   end
 
+  def deletable?
+    false
+  end
+
+   def self.creatable?
+    current_user and current_user.is_admin
+   end
 end