mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-12-24 14:03:16 +00:00
Update FederationController
This commit is contained in:
parent
4bf856330e
commit
1ba17b2bc4
1 changed files with 4 additions and 1 deletions
|
@ -14,6 +14,7 @@ use Carbon\Carbon;
|
|||
use Illuminate\Http\Request;
|
||||
use League\Fractal;
|
||||
use App\Util\ActivityPub\Helpers;
|
||||
use App\Util\ActivityPub\HttpSignature;
|
||||
|
||||
class FederationController extends Controller
|
||||
{
|
||||
|
@ -113,7 +114,9 @@ class FederationController extends Controller
|
|||
];
|
||||
});
|
||||
|
||||
return response()->json($res, 200, [], JSON_PRETTY_PRINT);
|
||||
return response()->json($res, 200, [
|
||||
'Access-Control-Allow-Origin' => '*'
|
||||
]);
|
||||
}
|
||||
|
||||
public function webfinger(Request $request)
|
||||
|
|
Loading…
Reference in a new issue