1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-19 15:01:14 +00:00

use "do end" instead of {} at IssuesController

git-svn-id: http://svn.redmine.org/redmine/trunk@20310 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2020-11-09 13:24:14 +00:00
parent 2046f0a8e2
commit 7ad9065c01

View File

@ -448,10 +448,10 @@ class IssuesController < ApplicationController
end end
end end
respond_to do |format| respond_to do |format|
format.html { format.html do
flash[:notice] = l(:notice_successful_delete) flash[:notice] = l(:notice_successful_delete)
redirect_back_or_default _project_issues_path(@project) redirect_back_or_default _project_issues_path(@project)
} end
format.api {render_api_ok} format.api {render_api_ok}
end end
end end