use "do end" instead of {} at AuthSourcesController

git-svn-id: http://svn.redmine.org/redmine/trunk@20275 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA
2020-11-06 13:00:29 +00:00
parent 475daf62f1
commit 57807b771b

View 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