Skip to content

Commit c72e211

Browse files
committed
Add missing ':see_other' status code when redirecting in the generated destroy controller method
1 parent 7ab0e35 commit c72e211

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/generators/rails/templates/controller.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def destroy
5757
@<%= orm_instance.destroy %>
5858
5959
respond_to do |format|
60-
format.html { redirect_to <%= index_helper %>_url, notice: <%= %("#{human_name} was successfully destroyed.") %> }
60+
format.html { redirect_to <%= index_helper %>_url, status: :see_other, notice: <%= %("#{human_name} was successfully destroyed.") %> }
6161
format.json { head :no_content }
6262
end
6363
end

test/scaffold_controller_generator_test.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class ScaffoldControllerGeneratorTest < Rails::Generators::TestCase
4646

4747
assert_instance_method :destroy, content do |m|
4848
assert_match %r{@post\.destroy}, m
49-
assert_match %r{format\.html \{ redirect_to posts_url, notice: "Post was successfully destroyed\." \}}, m
49+
assert_match %r{format\.html \{ redirect_to posts_url, status: :see_other, notice: "Post was successfully destroyed\." \}}, m
5050
assert_match %r{format\.json \{ head :no_content \}}, m
5151
end
5252

@@ -72,7 +72,7 @@ class ScaffoldControllerGeneratorTest < Rails::Generators::TestCase
7272
end
7373

7474
assert_instance_method :destroy, content do |m|
75-
assert_match %r{format\.html \{ redirect_to admin_posts_url, notice: "Post was successfully destroyed\." \}}, m
75+
assert_match %r{format\.html \{ redirect_to admin_posts_url, status: :see_other, notice: "Post was successfully destroyed\." \}}, m
7676
end
7777
end
7878
end

0 commit comments

Comments
 (0)