mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-24 00:49:55 +08:00
93f43f6b4f
- Adds a new InjectedComponentSet for the role 'ThreadList:Label'. - Adds a new label to the thread list indicating the snooze date if the thread has been snoozed - Coerces MailLabel to achieve this. This is a temporary hack, we should design a better view to display snooze date information
8 lines
316 B
JavaScript
8 lines
316 B
JavaScript
/** @babel */
|
|
import plugin from '../package.json'
|
|
|
|
export const PLUGIN_ID = plugin.appId[NylasEnv.config.get("env")];
|
|
export const PLUGIN_NAME = "Snooze Plugin"
|
|
export const SNOOZE_CATEGORY_NAME = "N1-Snoozed"
|
|
export const DATE_FORMAT_LONG = 'ddd, MMM D, YYYY h:mmA'
|
|
export const DATE_FORMAT_SHORT = 'MMM D, h:mmA'
|