mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-05 22:34:51 +00:00
10 lines
234 B
PHP
10 lines
234 B
PHP
<?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)
|
|
]
|
|
];
|