1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2025-03-06 19:48:22 +00:00
pixelfed/app/Http/Controllers/ImportController.php

21 lines
327 B
PHP
Raw Normal View History

2018-11-03 21:51:51 -06:00
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class ImportController extends Controller
{
2020-05-25 21:30:18 -06:00
use Import\Instagram, Import\Mastodon;
2018-11-03 21:51:51 -06:00
2020-05-25 21:30:18 -06:00
public function __construct()
{
$this->middleware('auth');
2019-03-17 17:00:46 -06:00
2020-05-25 21:30:18 -06:00
if(config('pixelfed.import.instagram.enabled') != true) {
abort(404, 'Feature not enabled');
}
}
2018-11-03 21:51:51 -06:00
}