瀏覽代碼

Update HashtagFollow model, add MAX_LIMIT of 250 tags per account

Daniel Supernault 2 年之前
父節點
當前提交
ed35214161
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      app/HashtagFollow.php

+ 2 - 0
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);