Created
August 4, 2014 22:14
-
-
Save lucianosousa/892224c68a27e777b491 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
| class Post | |
| def as_indexed_json(options={}) | |
| self.as_json( | |
| only: [ :id, :title, :published ], | |
| filter: { | |
| bool: { | |
| should: { | |
| term: { published: true } | |
| } | |
| } | |
| } | |
| ) | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment