mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-15 22:29:03 +08:00
18 lines
745 B
JavaScript
18 lines
745 B
JavaScript
import { ComponentRegistry } from 'mailspring-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() {}
|