我有一堆代码可以将登录用户的访客/懒惰注册帐户中的内容移交给我在创建新会话时运行的新帐户。
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在确认后记录用户时,上面的操作不会运行。如果我希望在用户登录后运行该方法,我应该在哪里放置?无论是登录还是确认。
答案 0 :(得分:6)
谢谢纳什。我就是这样做的。
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
。