From: Toshi MARUYAMA Date: Fri, 22 Nov 2019 04:25:03 +0000 (+0000) Subject: code layout clean up IssuesController#create X-Git-Tag: 4.2.0~1489 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=e8343c1f9df66674038ff9e466b2f81026b8762b;p=redmine.git code layout clean up IssuesController#create git-svn-id: http://svn.redmine.org/redmine/trunk@19150 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/controllers/issues_controller.rb b/app/controllers/issues_controller.rb index 73637095b..eabd5f2e6 100644 --- a/app/controllers/issues_controller.rb +++ b/app/controllers/issues_controller.rb @@ -144,10 +144,16 @@ class IssuesController < ApplicationController respond_to do |format| format.html { render_attachment_warning_if_needed(@issue) - flash[:notice] = l(:notice_issue_successful_create, :id => view_context.link_to("##{@issue.id}", issue_path(@issue), :title => @issue.subject)) + flash[:notice] = + l(:notice_issue_successful_create, + :id => view_context.link_to("##{@issue.id}", issue_path(@issue), + :title => @issue.subject)) redirect_after_create } - format.api { render :action => 'show', :status => :created, :location => issue_url(@issue) } + format.api { + render :action => 'show', :status => :created, + :location => issue_url(@issue) + } end return else