Initial Commit
linter / quality (push) Canceled after 0s
tests / ci (8.3) (push) Canceled after 0s
tests / ci (8.4) (push) Canceled after 0s
tests / ci (8.5) (push) Canceled after 0s

This commit is contained in:
2026-08-28 23:53:45 +10:00
parent 3ce70b3701
commit 37ff8e0a88
13 changed files with 292 additions and 23 deletions
+2 -1
View File
@@ -15,7 +15,7 @@ class DirectMessage extends Model
protected $fillable = [
'id', 'thread_id', 'user_id', 'username', 'full_name', 'item_type', 'text',
'media_url', 'is_video', 'timestamp', 'shared_url', 'shared_preview_image',
'media_url', 'is_video', 'attachments', 'timestamp', 'shared_url', 'shared_preview_image',
'shared_title', 'shared_caption', 'reactions', 'replied_to_id', 'replied_to_text',
];
@@ -23,6 +23,7 @@ class DirectMessage extends Model
'is_video' => 'boolean',
'timestamp' => 'integer',
'reactions' => 'array',
'attachments' => 'array',
'scraped_at' => 'datetime',
];