lib/active_admin/orm/active_record/comments/namespace_helper.rb



module ActiveAdmin
  module Comments

    module NamespaceHelper

      # Returns true if the namespace allows comments
      def comments?
        comments == true
      end

    end

  end
end