[MM-23535] Add disable database search flag and return empty posts results if set (#14245)

* [MM-23535] Add disable database search flag and return empty posts results if set

* Add UpdateConfig function for the SearchStore and hook it into the app lifecycle

* Add the config listener in the server instance instead of using FakeApp

* Instantiate searchlayer as a pointer to avoid passing around copies of it
This commit is contained in:
Miguel de la Cruz
2020-05-13 14:00:57 +02:00
committed by GitHub
parent 288ed40e8f
commit 4fde004a5b
6 changed files with 47 additions and 22 deletions

View File

@@ -111,7 +111,7 @@ func (h *MainHelper) setupStore() {
h.SQLSupplier = sqlstore.NewSqlSupplier(*h.Settings, nil)
h.Store = searchlayer.NewSearchLayer(&TestStore{
h.SQLSupplier,
}, h.SearchEngine)
}, h.SearchEngine, config)
}
func (h *MainHelper) setupResources() {