소스 검색

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);