Mailspring/internal_packages/activity-list/lib/main.es6
Jackie Luo 6a1bed23c1 feat(activity-list): View message opens and link clicks
Summary:
Adds an activity list view that shows message opens and link clicks in a
chronological feed.

TODO: Add badge for unread notifications and different styling for read/unread
notifications. Click item to jump to corresponding thread.

Test Plan: TODO.

Reviewers: evan, bengotow

Reviewed By: bengotow

Differential Revision: https://phab.nylas.com/D2915
2016-04-22 17:27:30 -07:00

16 lines
445 B
JavaScript

import {ComponentRegistry, WorkspaceStore} from 'nylas-exports';
import ActivityListButton from './activity-list-button';
import ActivityListStore from './activity-list-store';
export function activate() {
ComponentRegistry.register(ActivityListButton, {
location: WorkspaceStore.Location.RootSidebar.Toolbar,
});
ActivityListStore.activate();
}
export function deactivate() {
ComponentRegistry.unregister(ActivityListButton);
}