mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-06 08:08:10 +08:00
17 lines
342 B
Text
17 lines
342 B
Text
|
import { WorkspaceStore, MailboxPerspective } from 'mailspring-exports';
|
||
|
|
||
|
export default class ActivityMailboxPerspective extends MailboxPerspective {
|
||
|
sheet() {
|
||
|
return WorkspaceStore.Sheet.Activity;
|
||
|
}
|
||
|
threads() {
|
||
|
return null;
|
||
|
}
|
||
|
canReceiveThreadsFromAccountIds() {
|
||
|
return false;
|
||
|
}
|
||
|
unreadCount() {
|
||
|
return 0;
|
||
|
}
|
||
|
}
|