You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pixelfed/config/exp.php

45 lines
852 B
PHTML

6 years ago
<?php
/*
* Experimental configuration options
*
* (Use at your own risk)
*/
6 years ago
return [
// Hidden like counts (deprecated)
6 years ago
'lc' => env('EXP_LC', false),
// Recommendations (deprecated)
4 years ago
'rec' => false,
// Loops feature (deprecated)
4 years ago
'loops' => false,
// Text only posts (alpha)
4 years ago
'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),
'cached_home_timeline' => env('EXP_CHT', false),
// Groups (unreleased)
'gps' => env('EXP_GPS', false),
// Single page application (beta)
'spa' => true,
// Enforce Mastoapi Compatibility (alpha)
'emc' => env('EXP_EMC', true),
// HLS Live Streaming
'hls' => env('HLS_LIVE', false),
// Post Update/Edits
'pue' => env('EXP_PUE', false),
5 years ago
];