2

我正在使用公共活动来获取通知。我正在我的祷告模型中跟踪新的祷告。出于某种原因,当我删除 Pain 时 current_user 为零,我不明白为什么。

class Prayer < ApplicationRecord
 include PublicActivity::Model

  has_many :activities, as: :trackable, class_name: 'PublicActivity::Activity', dependent: :destroy
  tracked owner: Proc.new { |controller, model| controller.current_user } #fail current_user is nil
end

class Pain < ApplicationRecord
 belongs_to :user
 has_many :prayers, dependent: :destroy
end

我可以提供更多代码,但我不确定什么会有用。非常感谢

编辑:我忘了说我正在尝试删除 Rails 管理页面中的疼痛

Edit2:Rails 管理员配置

RailsAdmin.config do |config|

 config.actions do
  dashboard                     # mandatory
  index                         # mandatory
  new
  export
  bulk_delete
  show
  edit
  delete
  show_in_app
 end

 config.authorize_with do |controller|
  redirect_to main_app.root_path unless current_user &&    current_user.admin
 end
end
4

1 回答 1

0

好的,我找到了解决方案,在我的 ApplicationController 中,我调用了 helper_method:current_user

class ApplicationController < ActionController::Base
  helper_method :current_user

  def current_user
    @current_user ||= User.find_by(id: session[:user])
  end
end

现在我可以在我的 Prayer 模型中访问 c​​urrent_user 了。

谢谢大家

于 2016-12-21T13:40:29.547 回答