Created
March 8, 2017 18:02
-
-
Save kopylovvlad/6c2e4deb1f6e3be2bfc2c7ee616510c0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module EsHelper | |
def as_indexed_json(params={}) | |
{ | |
title: title, | |
description: description, | |
searching: searching | |
} | |
end | |
def preview | |
if description.size > 25 | |
description[0, 25] + '...' | |
else | |
description | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment