Update FederationController
This commit is contained in:
parent
6329bdf5d8
commit
8bc493e4a5
1 changed files with 2 additions and 3 deletions
|
@ -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' => '*'
|
||||
]);
|
||||
|
|
Loading…
Reference in a new issue