pixelfed/config/exp.php

47 lines
898 B
PHP
Raw Permalink Normal View History

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),
2023-05-25 06:33:44 +00:00
'cached_home_timeline' => env('EXP_CHT', 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),
2023-05-25 06:33:44 +00:00
// HLS Live Streaming
'hls' => env('HLS_LIVE', false),
// Post Update/Edits
'pue' => env('EXP_PUE', true),
2023-10-20 06:17:24 +00:00
'autolink' => env('EXP_AUTOLINK_V2', false),
2020-02-13 09:45:58 +00:00
];