Add trending config

This commit is contained in:
Daniel Supernault 2022-12-27 03:37:48 -07:00
parent d6fbbb45ab
commit 2a304d18c7
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 9 additions and 0 deletions

9
config/trending.php Normal file
View File

@ -0,0 +1,9 @@
<?php
return [
'hashtags' => [
'ttl' => env('PF_HASHTAGS_TRENDING_TTL', 43200),
'recency_mins' => env('PF_HASHTAGS_TRENDING_RECENCY_MINS', 20160),
'limit' => env('PF_HASHTAGS_TRENDING_LIMIT', 20)
]
];