Daniel Supernault пре 6 година
родитељ
комит
9879d3c942

+ 1 - 1
app/Http/Controllers/ApiController.php

@@ -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' => [

+ 2 - 4
app/Http/Controllers/FederationController.php

@@ -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');