Browse Source

Update Status model

Daniel Supernault 6 years ago
parent
commit
3d7c97b0ed
1 changed files with 2 additions and 1 deletions
  1. 2 1
      app/Status.php

+ 2 - 1
app/Status.php

@@ -18,13 +18,14 @@ class Status extends Model
      */
      */
     protected $dates = ['deleted_at'];
     protected $dates = ['deleted_at'];
 
 
-    protected $fillable = ['profile_id', 'visibility', 'in_reply_to_id'];
+    protected $fillable = ['profile_id', 'visibility', 'in_reply_to_id', 'reblog_of_id'];
 
 
     const STATUS_TYPES = [
     const STATUS_TYPES = [
         'photo',
         'photo',
         'photo:album',
         'photo:album',
         'video',
         'video',
         'video:album',
         'video:album',
+        'photo:video:album'
         'share',
         'share',
         'reply',
         'reply',
         'story',
         'story',