Authlogic's current_user object in models

前端 未结 3 884
星月不相逢
星月不相逢 2021-02-15 17:32

I need to know the ID of the current user in a model:

def after_save
  desc, points=nil, nil

  if answer_index == daily_question.correct_answer_index 
    desc          


        
3条回答
  •  我寻月下人不归
    2021-02-15 17:47

    assuming the user is loggedin you can use

    UserSession.find.user

    You might want to add checks to ensure UserSession.find returns something before calling .user

提交回复
热议问题