Skip to content

Instantly share code, notes, and snippets.

@npj
Created May 4, 2012 16:46
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/2596145 to your computer and use it in GitHub Desktop.
Save npj/2596145 to your computer and use it in GitHub Desktop.
# app/controllers/posts_controller.rb
class PostsController < ApplicationController
before_filter :find_post
protected
def find_post
unless @post = Post.where(:slug => params[:id]).first
# what do we do here?
end
end
end
# app/models/post.rb
class Post < ActiveRecord::Base
def to_param
self.slug
end
end
@zhisme
Copy link

zhisme commented Jan 29, 2018

def find_post
  unless @post = Post.find_by(slug: params[:id])
    # what do we do here?
  end
end

More understandable :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment