1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-09 16:08:48 +01:00

14 lines
583 B
JavaScript
Raw Normal View History

2018-01-23 09:03:31 -08:00
export const STATUSES_STORE = 'statuses'
export const STATUS_TIMELINES_STORE = 'status_timelines'
2018-01-23 09:21:21 -08:00
export const META_STORE = 'meta'
2018-01-28 12:51:48 -08:00
export const ACCOUNTS_STORE = 'accounts'
export const RELATIONSHIPS_STORE = 'relationships'
export const NOTIFICATIONS_STORE = 'notifications'
2018-02-08 22:29:29 -08:00
export const NOTIFICATION_TIMELINES_STORE = 'notification_timelines'
2018-02-11 10:35:25 -08:00
export const PINNED_STATUSES_STORE = 'pinned_statuses'
2018-02-13 19:34:37 -08:00
export const TIMESTAMP = '__pinafore_ts'
export const ACCOUNT_ID = '__pinafore_acct_id'
export const STATUS_ID = '__pinafore_status_id'
2018-02-26 22:22:56 -08:00
export const REBLOG_ID = '__pinafore_reblog_id'