Guest User

Untitled

a guest
Apr 19th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. named_scope :featured, lambda {|*args|
  2. limit = args.first || 1
  3. { :conditions => ['is_featured = 1'],
  4. :order => 'start_date asc',
  5. :limit => limit}
  6. }
Add Comment
Please, Sign In to add comment