Skip to content

Instantly share code, notes, and snippets.

@davidcelis
Created November 29, 2011 20:06
Show Gist options
  • Save davidcelis/1406231 to your computer and use it in GitHub Desktop.
Save davidcelis/1406231 to your computer and use it in GitHub Desktop.
Example permalink matching
# Permalink matching
match "/users/:username" => "users#show", as: "user"
def show
@user = User.find_by_username(params[:username])
if @user.nil?
redirect_to '/404.html' and return
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment