mirror of https://github.com/pixelfed/pixelfed
Add ImportController
parent
edd79a3a80
commit
4ae6cb4307
@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class ImportController extends Controller
|
||||
{
|
||||
use Import\Instagram, Import\Mastodon;
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$this->middleware('auth');
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Reference in New Issue