Class: NewsArticlesController

Inherits:
ApplicationController
  • Object
show all
Defined in:
app/controllers/news_articles_controller.rb

Instance Method Summary collapse

Instance Method Details

#indexObject



3
4
5
# File 'app/controllers/news_articles_controller.rb', line 3

def index
  @articles = NewsArticle.released.all(:limit => 15, :order => "release_date desc")
end