pixelfed/config/exp.php

37 wiersze
687 B
PHP
Czysty Zwykły widok Historia

2019-04-21 02:00:42 +00:00
<?php
/*
* Experimental configuration options
*
* (Use at your own risk)
*/
2019-04-21 02:00:42 +00:00
return [
// Hidden like counts (deprecated)
2019-04-26 05:24:25 +00:00
'lc' => env('EXP_LC', false),
// Recommendations (deprecated)
2021-01-17 08:36:03 +00:00
'rec' => false,
// Loops feature (deprecated)
2021-01-17 08:36:03 +00:00
'loops' => false,
// Text only posts (alpha)
2021-01-17 08:36:03 +00:00
'top' => env('EXP_TOP', false),
// Poll statuses (alpha)
'polls' => env('EXP_POLLS', false),
// Cached public timeline for larger instances (beta)
'cached_public_timeline' => env('EXP_CPT', false),
// Groups (unreleased)
2021-12-22 04:44:52 +00:00
'gps' => env('EXP_GPS', false),
// Single page application (beta)
'spa' => true,
// Enforce Mastoapi Compatibility (alpha)
'emc' => env('EXP_EMC', true),
2020-02-13 09:45:58 +00:00
];