devise の current_user をオーバーライドするための stackoverflow の質問に基づいて、次のように書きました。
class ApplicationController < ActionController::Base
alias_method :devise_current_user, :current_user
def current_user
if !devise_current_user.nil?
return # my logic
end
return nil
end
end
2 つの質問: 1. alias_method を定義すると、未定義のメソッド エラーがスローされます ....