Remove SearchObserver, aim is to remove all observers

rails-observers gem is mostly unmaintained and is a pain to carry forward
new implementation contains significantly less magic as a bonus
This commit is contained in:
Sam
2016-12-22 13:13:14 +11:00
parent 31cda7b372
commit 0a78ae739d
16 changed files with 85 additions and 44 deletions

View File

@ -1331,7 +1331,7 @@ describe UsersController do
let(:user) { Fabricate :user, username: "joecabot", name: "Lawrence Tierney" }
before do
ActiveRecord::Base.observers.enable :all
SearchIndexer.enable
Fabricate :post, user: user, topic: topic
end