首次在rails应用程序上安装activeadmin时,会出现一个名为" Comments"在/ admin仪表板中。
我很惊讶地看到这一点,因为我的数据库中没有这样的表格。
究竟是什么?文档说
默认情况下,Active Admin包含对资源的评论。有时, 这是不受欢迎的。
有人可以详细说明资源评论的含义'
答案 0 :(得分:4)
AA提供了为每个资源添加注释的可能性。
与has_many :comments
类似,但仅适用于AA面板。
我通常会禁用评论,但这取决于 - 有时它们很有用。
config/active_admin.rb
中有一些设置:
# You can completely disable comments:
config.comments = true
#
# You can disable the menu item for the comments index page:
config.show_comments_in_menu = false # if set to false you won't see the tab Comments
# You can change the name under which comments are registered:
# config.comments_registration_name = 'AdminComment'
答案 1 :(得分:0)