X-Git-Url: https://git.njae.me.uk/?a=blobdiff_plain;f=app%2Fmodels%2Fproduct.rb;h=9cc9488c6030d3a2ba776359b759115f1df07e70;hb=94adcb93b1eac6b07408de9db7f12d46e9e7d390;hp=4cd770b8408e024060066222912e8afdb473d4e7;hpb=09cd438e77dd418b03b67e3e6a4b48ec95b72d1d;p=depot.git

diff --git a/app/models/product.rb b/app/models/product.rb
index 4cd770b..9cc9488 100644
--- a/app/models/product.rb
+++ b/app/models/product.rb
@@ -7,6 +7,12 @@ class Product < ActiveRecord::Base
                       :with    => %r{\.(gif|jpg|png)$}i,
                       :message => "must be a URL for GIF, JPG, or PNG image."
   
+  def self.find_products_for_sale
+    find(:all, 
+      :conditions => "date_available <= now()",
+      :order => :title)
+  end
+  
 protected
   def price_must_be_at_least_a_penny
     errors.add(:price, 'should be at least 0.01') if price.nil? || price < 0.01