Module: Chive::ApplicationHelper

Defined in:
app/helpers/chive/application_helper.rb

Instance Method Summary collapse

Instance Method Details

#article_list(limit: 10, partial: 'chive/articles/list') ⇒ Object



3
4
5
# File 'app/helpers/chive/application_helper.rb', line 3

def article_list limit: 10, partial: 'chive/articles/list'
  Article.where('published_at <= ? AND (expired_at >= ? OR expired_at IS NULL) AND status = ?', DateTime.now, DateTime.now, 'publish').order(published_at: :desc).limit(limit)
end