lib/active_admin/comments/configuration.rb



module ActiveAdmin
  module Comments

    module Configuration
      extend ActiveSupport::Concern

      included do
        # Set the namespaces that can create and view comments
        #
        #   config.allow_comments_in = [:admin, :root]
        #
        setting :allow_comments_in, [:admin]
      end

    end

  end
end