如何在操作期间在活动管理员评论部分生成评论? (例如,当我将订单状态从“关闭”改为“打开”时)
感谢您未来的答案。
答案 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