mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-26 00:03:16 +00:00
Update ImportController
This commit is contained in:
parent
776cd4398b
commit
3b7e9e07e1
1 changed files with 8 additions and 8 deletions
|
@ -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…
Reference in a new issue