在操作期间生成活动管理员评论

时间:2016-02-15 12:11:25

标签: ruby-on-rails ruby comments activeadmin

如何在操作期间在活动管理员评论部分生成评论? (例如,当我将订单状态从“关闭”改为“打开”时)

感谢您未来的答案。

1 个答案:

答案 0 :(得分:1)

假设您拥有User模型,并且想要为特定用户创建评论。

模特中的

after_update :add_comment

 def add_comment 
  ActiveAdmin::Comment.create(
    resource_id: User.last.id, # id of that particular user to which you add comment
    namespace: 'admin',
    body: 'Your comment body',
    resource_type: 'User',
    author_id: 1, # id of the comment's author, could be AdminUser.first, for example
    author_type: 'AdminUser'
  )
end