Update FederationController

This commit is contained in:
Daniel Supernault 2019-03-28 18:27:28 -06:00
parent 6329bdf5d8
commit 8bc493e4a5
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 2 additions and 3 deletions

View File

@ -66,7 +66,7 @@ class FederationController extends Controller
RemoteFollowPipeline::dispatch($follower, $url);
return redirect()->back();
return response(['success' => true, 'follower' => $follower]);
}
public function nodeinfoWellKnown()
@ -124,7 +124,6 @@ class FederationController extends Controller
],
'captcha' => (bool) config('pixelfed.recaptcha'),
],
'openRegistrations' => config('pixelfed.open_registration'),
'protocols' => [
'activitypub',
],
@ -148,7 +147,7 @@ class FederationController extends Controller
'version' => '2.0',
];
});
$res['openRegistrations'] = config('pixelfed.open_registration');
return response()->json($res, 200, [
'Access-Control-Allow-Origin' => '*'
]);