X-Git-Url: https://git.njae.me.uk/?a=blobdiff_plain;f=app%2Fmodels%2Fproduct.rb;h=9cc9488c6030d3a2ba776359b759115f1df07e70;hb=94adcb93b1eac6b07408de9db7f12d46e9e7d390;hp=05ac26e38d4bc58dc371a9f3c5c649cab0bdebea;hpb=cf29841dca2a4ba6313a99576d56e238b700a158;p=depot.git diff --git a/app/models/product.rb b/app/models/product.rb index 05ac26e..9cc9488 100644 --- a/app/models/product.rb +++ b/app/models/product.rb @@ -5,7 +5,13 @@ class Product < ActiveRecord::Base validates_uniqueness_of :title validates_format_of :image_url, :with => %r{\.(gif|jpg|png)$}i, - :message => 'must be a URL for a GIF, JPG, or PNG image.' + :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