tududi/frontend/entities/InboxItem.ts
Chris f9b21dff0a
Fix today race condition (#75)
* Move frontend to root

* Fix backend issues

* Remove old routes

* Setup Dockerfile

* Fix today /tags multiplt requests issue

* Fix race condition on today's inbox widget

* Fix cors development issue

* Fix CORS for Dockerfile

* Fix dockerised settings for infinite loop

* Fix translation issues

* fixup! Fix translation issues

---------

Co-authored-by: Your Name <you@example.com>
2025-06-13 14:20:24 +03:00

8 lines
No EOL
210 B
TypeScript

export interface InboxItem {
id?: number;
content: string;
status?: string; // 'added' | 'processed' | 'deleted'
source?: string; // 'tududi' | 'telegram'
created_at?: string;
updated_at?: string;
}