mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 04:25:31 +08:00
17 lines
555 B
JavaScript
17 lines
555 B
JavaScript
import ThreadSearchIndexStore from './thread-search-index-store'
|
|
import ContactSearchIndexer from './contact-search-indexer'
|
|
// import EventSearchIndexer from './event-search-indexer'
|
|
|
|
|
|
export function activate() {
|
|
ThreadSearchIndexStore.activate()
|
|
ContactSearchIndexer.activate()
|
|
// TODO Calendar feature has been punted, we will disable this indexer for now
|
|
// EventSearchIndexer.activate(indexer)
|
|
}
|
|
|
|
export function deactivate() {
|
|
ThreadSearchIndexStore.deactivate()
|
|
ContactSearchIndexer.deactivate()
|
|
// EventSearchIndexer.deactivate()
|
|
}
|