]> source.dussan.org Git - redmine.git/commitdiff
use 'lambda' instead of '->{}' at UsersController
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 17 Dec 2020 13:10:13 +0000 (13:10 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 17 Dec 2020 13:10:13 +0000 (13:10 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@20657 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/controllers/users_controller.rb

index 5073812337433527b8371903dfe8a3aebccfdf77..c12704e2e965770a9e0528797a05bc7604e6b29f 100644 (file)
@@ -22,7 +22,7 @@ class UsersController < ApplicationController
   self.main_menu = false
 
   before_action :require_admin, :except => :show
-  before_action ->{find_user(false)}, :only => :show
+  before_action lambda {find_user(false)}, :only => :show
   before_action :find_user, :only => [:edit, :update, :destroy]
   accept_api_auth :index, :show, :create, :update, :destroy