1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Replace "name" with "author" in the Cookies example

I think doing `@comments.name` is a little confusing, just doesn't sounds right.
This commit is contained in:
Agis Anastasopoulos 2012-11-15 13:46:09 +02:00
parent c15b65db13
commit 688d8bf443

View file

@ -377,7 +377,7 @@ Your application can store small amounts of data on the client — called cookie
class CommentsController < ApplicationController
def new
# Auto-fill the commenter's name if it has been stored in a cookie
@comment = Comment.new(name: cookies[:commenter_name])
@comment = Comment.new(author: cookies[:commenter_name])
end
def create
@ -386,7 +386,7 @@ class CommentsController < ApplicationController
flash[:notice] = "Thanks for your comment!"
if params[:remember_name]
# Remember the commenter's name.
cookies[:commenter_name] = @comment.name
cookies[:commenter_name] = @comment.author
else
# Delete cookie for the commenter's name cookie, if any.
cookies.delete(:commenter_name)