Skip to content

Instantly share code, notes, and snippets.

@lukeredpath
Created August 4, 2008 11:47
Show Gist options
  • Save lukeredpath/3875 to your computer and use it in GitHub Desktop.
Save lukeredpath/3875 to your computer and use it in GitHub Desktop.
def show
if @project = @user.projects.find_by_name(params[:project_name])
# congrats, it exists
elsif project = @user.projects.find_by_old_name(params[:project_name])
redirect_to project_url(project), :status => :moved_permanently
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment