1
0

Mastodon.php 286 B

12345678910111213141516
  1. <?php
  2. namespace App\Http\Controllers\Import;
  3. use Illuminate\Http\Request;
  4. trait Mastodon
  5. {
  6. public function mastodon()
  7. {
  8. if(config_cache('pixelfed.import.instagram.enabled') != true) {
  9. abort(404, 'Feature not enabled');
  10. }
  11. return view('settings.import.mastodon.home');
  12. }
  13. }