aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/code
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2011-10-26 09:40:49 +0200
committerJosé Valim <jose.valim@gmail.com>2011-11-09 19:06:02 -0200
commitf686d9429fc964ca7ef0c7a8246ac25fd861a05b (patch)
treec4c4acf47706e1708ebdcb7a40ef2dd6599afe17 /railties/guides/code
parent4857339aab4f725639347c55e56a75012bb81411 (diff)
downloadrails-f686d9429fc964ca7ef0c7a8246ac25fd861a05b.tar.gz
rails-f686d9429fc964ca7ef0c7a8246ac25fd861a05b.tar.bz2
rails-f686d9429fc964ca7ef0c7a8246ac25fd861a05b.zip
Use head :no_content on the guides as well.
Diffstat (limited to 'railties/guides/code')
-rw-r--r--railties/guides/code/getting_started/app/controllers/posts_controller.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/guides/code/getting_started/app/controllers/posts_controller.rb b/railties/guides/code/getting_started/app/controllers/posts_controller.rb
index 7e903c984c..1581d4eb16 100644
--- a/railties/guides/code/getting_started/app/controllers/posts_controller.rb
+++ b/railties/guides/code/getting_started/app/controllers/posts_controller.rb
@@ -62,7 +62,7 @@ class PostsController < ApplicationController
respond_to do |format|
if @post.update_attributes(params[:post])
format.html { redirect_to @post, notice: 'Post was successfully updated.' }
- format.json { head :ok }
+ format.json { head :no_content }
else
format.html { render action: "edit" }
format.json { render json: @post.errors, status: :unprocessable_entity }
@@ -78,7 +78,7 @@ class PostsController < ApplicationController
respond_to do |format|
format.html { redirect_to posts_url }
- format.json { head :ok }
+ format.json { head :no_content }
end
end
end