# File 'lib/booth/models/contests/scopes/recently_created.rb', line 10defself.scope(base)base.where.not(created_at:nil).where('created_at > ?',::Booth::Models::Contest.lifespan.ago)end
Instance Method Details
#call ⇒ Object
15
16
17
18
# File 'lib/booth/models/contests/scopes/recently_created.rb', line 15defcallcontest.created_at.present?&&contest.created_at>::Booth::Models::Contest.lifespan.agoend