Sha256: c1df82df6cf729398606bdd1d6624327e988b3474516803e117766d66e295317

Contents?: true

Size: 594 Bytes

Versions: 1

Compression:

Stored size: 594 Bytes

Contents

require 'active_support/concern'

module Georgia
  module Indexer
    module Extensions
      module Solr
        extend ActiveSupport::Concern

        included do

          searchable do
            text :name
            text :email
            text :message
            text :subject
            text :phone
            string :spam do
              status
            end
            string :name
            string :email
            string :phone
            string :subject
            string :message
            time :created_at
          end

        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
georgia_mailer-0.1.0 app/models/georgia/extensions/solr/georgia_mailer_message.rb