0
0
Fork 0

Avoid dynamic methods due to processing speed (#2080)

This commit is contained in:
839 2017-04-18 22:57:46 +09:00 committed by Eugen
parent 880590ad0d
commit e2a1b574ab
2 changed files with 2 additions and 2 deletions

View file

@ -73,7 +73,7 @@ class ApiController < ApplicationController
end
def current_user
super || current_resource_owner
current_resource_owner || super
rescue ActiveRecord::RecordNotFound
nil
end