Update ImportController

pull/2211/head
Daniel Supernault 5 years ago
parent 776cd4398b
commit 3b7e9e07e1
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7

@ -6,15 +6,15 @@ use Illuminate\Http\Request;
class ImportController extends Controller
{
use Import\Instagram, Import\Mastodon;
use Import\Instagram, Import\Mastodon;
public function __construct()
{
$this->middleware('auth');
public function __construct()
{
$this->middleware('auth');
if(config('pixelfed.import.instagram.enabled') != true) {
abort(404, 'Feature not enabled');
}
}
if(config('pixelfed.import.instagram.enabled') != true) {
abort(404, 'Feature not enabled');
}
}
}

Loading…
Cancel
Save