Sha256: 0b2e369ab5382dacff96c50c9612998e292b979fadc97712e2ec5015d33e5e4e
Contents?: true
Size: 1.3 KB
Versions: 1
Compression:
Stored size: 1.3 KB
Contents
module Georgia module Indexer module Solr module Ckeditor module Asset def self.extended(base) base.class_eval do searchable do text :filename, stored: true text :tags do tag_list.join(', ') end string :tags, stored: true, multiple: true do tag_list end string :extension, stored: true do extension.try(:downcase) end time :updated_at integer :size, stored: true do size / 1024 # gives size in KB end end def self.search_index model, params @search = model.search do fulltext params[:query] do fields(:filename, :tags) end with(:extension, params[:e]) unless params[:e].blank? with(:tags).any_of(params[:tg]) unless params[:tg].blank? order_by (params[:o] || :updated_at), (params[:dir] || :desc) paginate(page: params[:page], per_page: (params[:per] || 8)) end end end end end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
georgia-0.7.3 | lib/georgia/indexer/solr/ckeditor/asset.rb |