]> source.dussan.org Git - redmine.git/commitdiff
use "do end" instead of {} at AuthSourcesController
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Fri, 6 Nov 2020 13:00:29 +0000 (13:00 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Fri, 6 Nov 2020 13:00:29 +0000 (13:00 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@20275 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/controllers/auth_sources_controller.rb

index 400183ab2f97de3876f5c33273df4f48bc31f648..4fef1350f0fced5e47652069123660b3a707bbe0 100644 (file)
@@ -78,7 +78,7 @@ class AuthSourcesController < ApplicationController
 
   def autocomplete_for_new_user
     results = AuthSource.search(params[:term])
-    render :json => results.map {|result|
+    json = results.map do |result|
       {
         'value' => result[:login],
         'label' => "#{result[:login]} (#{result[:firstname]} #{result[:lastname]})",
@@ -88,7 +88,8 @@ class AuthSourcesController < ApplicationController
         'mail' => result[:mail].to_s,
         'auth_source_id' => result[:auth_source_id].to_s
       }
-    }
+    end
+    render :json => json
   end
 
   private