shorten long line of GroupsController

git-svn-id: http://svn.redmine.org/redmine/trunk@20217 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA
2020-10-28 14:42:03 +00:00
parent ffaa46fea1
commit 2d4dd6da8f

View File

@@ -66,11 +66,14 @@ class GroupsController < ApplicationController
respond_to do |format|
if @group.save
format.html {
format.html do
flash[:notice] = l(:notice_successful_create)
redirect_to(params[:continue] ? new_group_path : groups_path)
}
format.api { render :action => 'show', :status => :created, :location => group_url(@group) }
end
format.api do
render(:action => 'show', :status => :created,
:location => group_url(@group))
end
else
format.html { render :action => "new" }
format.api { render_validation_errors(@group) }