Browse Source

shorten long line of GroupsController

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

+ 6
- 3
app/controllers/groups_controller.rb 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) }

Loading…
Cancel
Save