zeus.ugent.be/lib/helpers/search.rb
2018-07-05 11:36:11 +02:00

24 lines
391 B
Ruby

module SearchHelper
def blog_search_json
jsonify articles
end
def event_search_json
jsonify all_events
end
private
def jsonify(collection)
elems = collection.map do |e|
{
title: e[:title],
url: url_for(e),
text: "#{e[:title]} #{e.reps[:text].compiled_content}",
tags: ''
}
end
{ pages: elems }.to_json
end
end