Browse Source

code layout clean up IssuesController#create

git-svn-id: http://svn.redmine.org/redmine/trunk@19150 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/4.2.0
Toshi MARUYAMA 4 years ago
parent
commit
e8343c1f9d
1 changed files with 8 additions and 2 deletions
  1. 8
    2
      app/controllers/issues_controller.rb

+ 8
- 2
app/controllers/issues_controller.rb View File

@@ -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

Loading…
Cancel
Save