Mailspring/app/internal_packages/participant-profile/lib/main.es6

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() {}