mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 04:02:35 +08:00
21 lines
727 B
JavaScript
21 lines
727 B
JavaScript
import {ComponentRegistry} from 'nylas-exports'
|
|
import ParticipantProfileStore from './participant-profile-store'
|
|
import SidebarParticipantProfile from './sidebar-participant-profile'
|
|
import SidebarRelatedThreads from './sidebar-related-threads'
|
|
|
|
export function activate() {
|
|
ParticipantProfileStore.activate()
|
|
ComponentRegistry.register(SidebarParticipantProfile, {role: 'MessageListSidebar:ContactCard'})
|
|
ComponentRegistry.register(SidebarRelatedThreads, {role: 'MessageListSidebar:ContactCard'})
|
|
}
|
|
|
|
export function deactivate() {
|
|
ComponentRegistry.unregister(SidebarParticipantProfile)
|
|
ComponentRegistry.unregister(SidebarRelatedThreads)
|
|
ParticipantProfileStore.deactivate()
|
|
}
|
|
|
|
export function serialize() {
|
|
|
|
}
|
|
|