mirror of
https://github.com/redmine/redmine.git
synced 2026-08-05 17:19:57 +02:00
code layout clean up IssuesController#create
git-svn-id: http://svn.redmine.org/redmine/trunk@19150 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user