gpt4 book ai didi

ruby-on-rails - 设计:确认后运行代码

转载 作者:数据小太阳 更新时间:2023-10-29 08:28:42 33 4
gpt4 key购买 nike

我有一堆代码将登录用户的访客/惰性注册帐户中的内容移交给他的新帐户,我在创建新 session 时运行该帐户。

class SessionsController < Devise::SessionsController

def new
super
end

def create
super
logging_in # this is the method which will run
end

def destroy
super
end

end

它在用户登录时起作用。但是,当 Devise 在确认后让用户登录时,上面的代码不会运行。如果我想让它在用户登录后运行,我应该把方法放在哪里?无论是登录还是确认。

最佳答案

谢谢纳什。这是我的做法。

class ConfirmationsController < Devise::ConfirmationsController

def new
super
end

def create
super
end

def show
self.resource = resource_class.confirm_by_token(params[:confirmation_token])

if resource.errors.empty?
set_flash_message(:notice, :confirmed) if is_navigational_format?
sign_in(resource_name, resource)
logging_in # Here it is
respond_with_navigational(resource){ redirect_to after_confirmation_path_for(resource_name, resource) }
else
respond_with_navigational(resource.errors, :status => :unprocessable_entity){ render :new }
end
end

protected

def after_resending_confirmation_instructions_path_for(resource_name)
new_session_path(resource_name)
end

def after_confirmation_path_for(resource_name, resource)
after_sign_in_path_for(resource)
end

end

需要在sign_in之后添加,因为我的logging_in方法使用了current_user

关于ruby-on-rails - 设计:确认后运行代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8756505/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com