mirror of https://github.com/pixelfed/pixelfed.git
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)
|
||
|
]
|
||
|
];
|