Update config var

This commit is contained in:
Daniel Supernault 2019-06-09 17:48:27 -06:00
parent 29022c6a79
commit 9879d3c942
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
2 changed files with 3 additions and 5 deletions

View File

@ -40,7 +40,7 @@ class ApiController extends BaseApiController
'activitypub' => [
'enabled' => config('federation.activitypub.enabled'),
'remote_follow' => config('pixelfed.remote_follow_enabled')
'remote_follow' => config('federation.activitypub.remoteFollow')
],
'ab' => [

View File

@ -51,15 +51,13 @@ class FederationController extends Controller
public function remoteFollowStore(Request $request)
{
return;
$this->authCheck();
$this->validate($request, [
'url' => 'required|string',
]);
if (config('pixelfed.remote_follow_enabled') !== true) {
abort(403);
}
abort_if(!config('federation.activitypub.remoteFollow'), 403);
$follower = Auth::user()->profile;
$url = $request->input('url');