mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-02-24 16:14:01 +08:00
14 lines
429 B
JavaScript
14 lines
429 B
JavaScript
import { localized } from 'mailspring-exports';
|
|
import SendRemindersMailboxPerspective from './send-reminders-mailbox-perspective';
|
|
|
|
export const name = 'SendRemindersAccountSidebarExtension';
|
|
|
|
export function sidebarItem(accountIds) {
|
|
return {
|
|
id: 'Reminders',
|
|
name: localized('Reminders'),
|
|
iconName: 'reminders.png',
|
|
perspective: new SendRemindersMailboxPerspective(accountIds),
|
|
insertAtTop: true,
|
|
};
|
|
}
|