Files
metabuilder/frontends/emailclient/app/data/folders.json
johndoe6345789 b7e9009900 refactor(emailclient): move demo data to JSON config files
Folders and emails constants extracted to folders.json and emails.json.
The TS loader hydrates relative hoursAgo into absolute timestamps.
Follows the 95% JSON / 5% code principle.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-19 15:55:37 +00:00

9 lines
378 B
JSON

[
{ "id": "inbox", "label": "Inbox", "icon": "inbox", "unreadCount": 3 },
{ "id": "starred", "label": "Starred", "icon": "star" },
{ "id": "sent", "label": "Sent", "icon": "send" },
{ "id": "drafts", "label": "Drafts", "icon": "drafts", "unreadCount": 1 },
{ "id": "spam", "label": "Spam", "icon": "report" },
{ "id": "trash", "label": "Trash", "icon": "delete" }
]