Skip to content

Instantly share code, notes, and snippets.

@npj
Created May 4, 2012 17:03
Show Gist options
  • Select an option

  • Save npj/2596245 to your computer and use it in GitHub Desktop.

Select an option

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