Skip to content

Instantly share code, notes, and snippets.

@npj
Created May 4, 2012 17:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save npj/2596245 to your computer and use it in GitHub Desktop.
Save npj/2596245 to your computer and use it in GitHub Desktop.
# app/controller/posts_controller.rb
class PostsController < ApplicationController
before_filter :find_post
protected
def find_post
if id = Slug[params[:id]]
@post = Post.find(id)
else
@post = Post.find(params[:id])
end
rescue ActiveRecord::RecordNotFound
redirect_to root_url
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment