diff --git a/app/Http/Controllers/StatusEditController.php b/app/Http/Controllers/StatusEditController.php index fab677115..de3054742 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:api'); - 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 f7bc3612e..c0b75cf5f 100644 --- a/config/exp.php +++ b/config/exp.php @@ -30,8 +30,5 @@ return [ // HLS Live Streaming 'hls' => env('HLS_LIVE', false), - // Post Update/Edits - 'pue' => env('EXP_PUE', true), - 'autolink' => env('EXP_AUTOLINK_V2', false), ];