From 8bcf3700baa05cb3b0239b51e301c140fd0ae9f4 Mon Sep 17 00:00:00 2001 From: Daniel Supernault <877217+dansup@users.noreply.github.com> Date: Thu, 1 Sep 2022 01:21:06 -0600 Subject: [PATCH] Update status model --- app/Status.php | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/app/Status.php b/app/Status.php index e944ac242..6150a9651 100644 --- a/app/Status.php +++ b/app/Status.php @@ -28,24 +28,7 @@ class Status extends Model */ protected $dates = ['deleted_at']; - protected $fillable = [ - 'scope', - 'caption', - 'rendered', - 'url', - 'uri', - 'object_url', - 'created_at', - 'local', - 'is_nsfw', - 'scope', - 'cw_summary', - 'profile_id', - 'visibility', - 'in_reply_to_id', - 'reblog_of_id', - 'type' - ]; + protected $guarded = []; const STATUS_TYPES = [ 'text',