Require a user_id on the new action. #1914

This commit is contained in:
Eric Davis
2009-01-19 11:14:57 -08:00
parent 8fe67ef8ae
commit 86c1990faa
2 changed files with 48 additions and 7 deletions
+13 -4
View File
@@ -37,11 +37,20 @@ class RatesController < ApplicationController
# GET /rates/new?user_id=1
# GET /rates/new.xml?user_id=1
def new
@rate = Rate.new
begin
@user = User.find(params[:user_id])
@rate = Rate.new(:user_id => @user.id)
respond_to do |format|
format.html # new.html.erb
format.xml { render :xml => @rate }
respond_to do |format|
format.html # new.html.erb
format.xml { render :xml => @rate }
end
rescue ActiveRecord::RecordNotFound
respond_to do |format|
flash[:error] = l(:rate_error_user_not_found)
format.html { redirect_to(home_url) }
format.xml { render :xml => "User not found", :status => :not_found }
end
end
end