diff --git a/app/Http/Controllers/StatusEditController.php b/app/Http/Controllers/StatusEditController.php index 168e21657..b45614519 100644 --- a/app/Http/Controllers/StatusEditController.php +++ b/app/Http/Controllers/StatusEditController.php @@ -16,7 +16,6 @@ class StatusEditController extends Controller public function __construct() { $this->middleware('auth'); - abort_if(! config('exp.pue'), 404, 'Post editing is not enabled on this server.'); } public function store(StoreStatusEditRequest $request, $id) diff --git a/config/exp.php b/config/exp.php index e14463411..d8f853752 100644 --- a/config/exp.php +++ b/config/exp.php @@ -39,8 +39,5 @@ return [ // HLS Live Streaming 'hls' => env('HLS_LIVE', false), - // Post Update/Edits - 'pue' => env('EXP_PUE', true), - 'autolink' => env('EXP_AUTOLINK_V2', false), ];