closes #9587
[arvados.git] / apps / workbench / app / models / arvados_base.rb
index 6250daa06a3d0c65d2233f51c33588a9de3855a5..f06193c3ecfaeb307ae0a2a86009270b9a4b266c 100644 (file)
@@ -144,10 +144,18 @@ class ArvadosBase < ActiveRecord::Base
     ArvadosResourceList.new(self).select(*args)
   end
 
+  def self.with_count(*args)
+    ArvadosResourceList.new(self).with_count(*args)
+  end
+
   def self.distinct(*args)
     ArvadosResourceList.new(self).distinct(*args)
   end
 
+  def self.include_trash(*args)
+    ArvadosResourceList.new(self).include_trash(*args)
+  end
+
   def self.eager(*args)
     ArvadosResourceList.new(self).eager(*args)
   end