我正在使用'审核'宝石在模型中的变化。我的应用程序中有current_user,但我没有使用它。事实上,我不想跟踪用户,我只想跟踪更改,无论是谁做的。如何禁用当前用户跟踪?
我试过Audited.current_user_method = :nil
,但没有工作。
答案 0 :(得分:0)
我这样使用:
创建一个文件
Audited.current_user_method = :nil
到./config/initializers/audited.rb
当Rails启动时