Class: Kawara::ArticlesController

Inherits:
ApplicationController show all
Defined in:
app/controllers/kawara/articles_controller.rb

Instance Method Summary collapse

Instance Method Details

#indexObject



5
6
7
# File 'app/controllers/kawara/articles_controller.rb', line 5

def index
  @articles = Article.latest
end

#showObject



9
10
11
# File 'app/controllers/kawara/articles_controller.rb', line 9

def show
  @article = Kawara::Article.find_from_published(params[:id])
end