Skip to content

0.19.0

Compare
Choose a tag to compare
@bbrala bbrala released this 30 Apr 10:16
· 53 commits to master since this release

Added

New feature which you can enable in the config:

  • exclude_feature_enabled
    This feature excludes some rows from being returned. Enable this when you have a flag in your model which determines whether this record must be returned in search queries or not. By default this feature is disabled.

  • exclude_records_column_name
    The column name for that property (which acts as a flag). This must match the exact column name at the table.

An example of using this feature
Think about when you have a blog and then you add this search functionality to your blogging system to search through your blog posts. Sometimes you do not want some posts to appear in the search results, for example when a post is not published yet. This feature helps you to do it.

Thanks to @vhessam for the PR #23.