1
0

ImportController.php 333 B

1234567891011121314151617181920
  1. <?php
  2. namespace App\Http\Controllers;
  3. use Illuminate\Http\Request;
  4. class ImportController extends Controller
  5. {
  6. use Import\Instagram, Import\Mastodon;
  7. public function __construct()
  8. {
  9. $this->middleware('auth');
  10. if(config_cache('pixelfed.import.instagram.enabled') != true) {
  11. abort(404, 'Feature not enabled');
  12. }
  13. }
  14. }