debian-mirror-gitlab/elasticsearch-rails/elasticsearch-model/spec/support/app/post.rb

15 lines
810 B
Ruby
Raw Normal View History

2020-03-13 15:44:24 +05:30
class Post < ActiveRecord::Base
include Searchable
has_and_belongs_to_many :categories, after_add: [ lambda { |a,c| a.__elasticsearch__.index_document } ],
after_remove: [ lambda { |a,c| a.__elasticsearch__.index_document } ]
has_many :authorships
has_many :authors, through: :authorships,
after_add: [ lambda { |a,c| a.__elasticsearch__.index_document } ],
after_remove: [ lambda { |a,c| a.__elasticsearch__.index_document } ]
has_many :comments, after_add: [ lambda { |a,c| a.__elasticsearch__.index_document } ],
after_remove: [ lambda { |a,c| a.__elasticsearch__.index_document } ]
after_touch() { __elasticsearch__.index_document }
end