]> source.dussan.org Git - redmine.git/commitdiff
shorten long line of GroupsController
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 28 Oct 2020 14:42:03 +0000 (14:42 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 28 Oct 2020 14:42:03 +0000 (14:42 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@20217 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/controllers/groups_controller.rb

index 2a8d5902715e282e0c3324351e7db29a312bc438..020931599977d9d31e36ea8571a7aefc8317f1e2 100644 (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) }