Sha256: 306aeccbd03629dc78b8f6b457c2e61661ff05f6fe727b823f22fb255815b7b6

Contents?: true

Size: 680 Bytes

Versions: 20

Compression:

Stored size: 680 Bytes

Contents

class Action

	include Auth::Concerns::EsConcern
	
	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
		    }
		}
	}

	
	field :action_name, type: String
	
	field :action_link, type: String
	
	field :action_description, type: String

	## we need to set the tags and primary and secondary links.
	## and also call set_es.
	## does not reliably delete users from elasticsearch.
	## how are they going to search without a name.

end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
wordjelly-auth-1.6.0 app/models/auth/action.rb
wordjelly-auth-1.5.9 app/models/auth/action.rb
wordjelly-auth-1.5.8 app/models/auth/action.rb
wordjelly-auth-1.5.7 app/models/auth/action.rb
wordjelly-auth-1.5.6 app/models/auth/action.rb
wordjelly-auth-1.5.5 app/models/auth/action.rb
wordjelly-auth-1.5.4 app/models/auth/action.rb
wordjelly-auth-1.5.3 app/models/auth/action.rb
wordjelly-auth-1.5.2 app/models/auth/action.rb
wordjelly-auth-1.5.1 app/models/auth/action.rb
wordjelly-auth-1.5.0 app/models/auth/action.rb
wordjelly-auth-1.4.9 app/models/auth/action.rb
wordjelly-auth-1.4.8 app/models/auth/action.rb
wordjelly-auth-1.4.7 app/models/auth/action.rb
wordjelly-auth-1.4.6 app/models/auth/action.rb
wordjelly-auth-1.4.5 app/models/auth/action.rb
wordjelly-auth-1.4.4 app/models/auth/action.rb
wordjelly-auth-1.4.3 app/models/auth/action.rb
wordjelly-auth-1.4.2 app/models/auth/action.rb
wordjelly-auth-1.4.0 app/models/auth/action.rb