Redmine当前的用户信息

时间:2012-09-27 06:47:18

标签: ruby-on-rails redmine

我在Redmine 1.4工作,我的数据库中有很多用户。我有一个功能,需要获取当前登录的用户。我怎样才能做到这一点?

1 个答案:

答案 0 :(得分:1)

我自己不是红宝石专家,看看它是如何在源头完成的。例如,在user_controller.rb中,使用 User.current 检索当前用户。

User.currentuser.rb中定义,并在application_controller.rb(其中user_controller.rb继承)中设置:

User.current = find_current_user

find_current_user定义在该行的下方。因此,只要执行application_controller,您就应该可以使用User.current