2016-11-03 04:03:20 +08:00
|
|
|
import ThreadSearchIndexStore from './thread-search-index-store'
|
2016-11-13 02:32:16 +08:00
|
|
|
import ContactSearchIndexer from './contact-search-indexer'
|
|
|
|
import EventSearchIndexer from './event-search-indexer'
|
2016-04-01 05:58:16 +08:00
|
|
|
|
|
|
|
|
|
|
|
export function activate() {
|
2016-11-03 04:03:20 +08:00
|
|
|
ThreadSearchIndexStore.activate()
|
2016-11-13 02:32:16 +08:00
|
|
|
ContactSearchIndexer.activate()
|
|
|
|
EventSearchIndexer.activate()
|
2016-04-01 05:58:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export function deactivate() {
|
2016-11-03 04:03:20 +08:00
|
|
|
ThreadSearchIndexStore.deactivate()
|
2016-11-13 02:32:16 +08:00
|
|
|
ContactSearchIndexer.deactivate()
|
|
|
|
EventSearchIndexer.deactivate()
|
2016-04-01 05:58:16 +08:00
|
|
|
}
|