| 1 | ActiveAdmin.register Comment, as: 'ContentComment' do |
| 2 | menu priority: 4, parent: 'Music Database' |
| 3 | actions :all, except: %i[new] |
| 4 | |
| 5 | index do |
| 6 | selectable_column |
| 7 | column :user |
| 8 | column :body |
| 9 | column :commentable_type |
| 10 | column :commentable_id |
| 11 | actions |
| 12 | end |
| 13 | |
| 14 | filter :user |
| 15 | filter :body |
| 16 | filter :created_at |
| 17 | filter :updated_at |
| 18 | |
| 19 | show do |
| 20 | attributes_table do |
| 21 | row :user |
| 22 | row :body |
| 23 | row :commentable_type |
| 24 | row :created_at |
| 25 | row :updated_at |
| 26 | end |
| 27 | end |
| 28 | end |