Browse Source

Add trending config

Daniel Supernault 2 years ago
parent
commit
2a304d18c7
1 changed files with 9 additions and 0 deletions
  1. 9 0
      config/trending.php

+ 9 - 0
config/trending.php

@@ -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)
+    ]
+];