From ed3521416112f6e8661cb2cae881a9e3abf35afd Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Tue, 9 May 2023 02:05:23 -0600 Subject: [PATCH] Update HashtagFollow model, add MAX_LIMIT of 250 tags per account --- app/HashtagFollow.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/HashtagFollow.php b/app/HashtagFollow.php index 0503330b0..126701fe1 100644 --- a/app/HashtagFollow.php +++ b/app/HashtagFollow.php @@ -12,6 +12,8 @@ class HashtagFollow extends Model 'hashtag_id' ]; + const MAX_LIMIT = 250; + public function hashtag() { return $this->belongsTo(Hashtag::class);