Class: Action

Inherits:
Object
  • Object
show all
Includes:
Auth::Concerns::EsConcern
Defined in:
app/models/auth/action.rb

Constant Summary collapse

INDEX_DEFINITION =
{
	index_name: Auth.configuration.brand_name.downcase,
	index_options:  {
	        settings:  {
	    		index: Auth::Concerns::EsConcern::AUTOCOMPLETE_INDEX_SETTINGS
		    },
	        mappings: {
	          "document" => Auth::Concerns::EsConcern::AUTOCOMPLETE_INDEX_MAPPINGS
	    }
	}
}