1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2025-03-04 10:39:08 +00:00
pixelfed/config/exp.php

37 lines
687 B
PHP
Raw Normal View History

2019-04-20 20:00:42 -06:00
<?php
/*
* Experimental configuration options
*
* (Use at your own risk)
*/
2019-04-20 20:00:42 -06:00
return [
// Hidden like counts (deprecated)
2019-04-25 23:24:25 -06:00
'lc' => env('EXP_LC', false),
// Recommendations (deprecated)
2021-01-17 01:36:03 -07:00
'rec' => false,
// Loops feature (deprecated)
2021-01-17 01:36:03 -07:00
'loops' => false,
// Text only posts (alpha)
2021-01-17 01:36:03 -07: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-21 21:44:52 -07:00
'gps' => env('EXP_GPS', false),
// Single page application (beta)
'spa' => true,
// Enforce Mastoapi Compatibility (alpha)
'emc' => env('EXP_EMC', true),
2020-02-13 17:45:58 +08:00
];