about summary refs log tree commit diff stats
path: root/app/controllers/blogs_controller.rb
blob: 5e726018d9240b2abc8d159fb180e8de0e30c66b (plain) (blame)
1
2
3
4
5
6
7
class BlogsController < ApplicationController

  def show
    @blog = Blog.find_by_slug(params[:slug])
  end

end