Skip to content

Instantly share code, notes, and snippets.

@lucianosousa
Created August 4, 2014 22:14
Show Gist options
  • Save lucianosousa/892224c68a27e777b491 to your computer and use it in GitHub Desktop.
Save lucianosousa/892224c68a27e777b491 to your computer and use it in GitHub Desktop.
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