Loading app/Config/Routes.php +1 −0 Original line number Diff line number Diff line Loading @@ -736,6 +736,7 @@ $routes->group('@(:podcastName)', function ($routes): void { ], ], ]); $routes->options('comments', 'EpisodeController::commentsPreflight/$1/$2'); $routes->get('comments', 'EpisodeController::comments/$1/$2', [ 'as' => 'episode-comments', 'application/activity+json' => [ Loading app/Controllers/EpisodeController.php +14 −0 Original line number Diff line number Diff line Loading @@ -210,6 +210,19 @@ class EpisodeController extends BaseController ->setBody($podcastObject->toJSON()); } /** * @noRector ReturnTypeDeclarationRector */ public function commentsPreflight(): Response { return $this->response->setHeader('Access-Control-Allow-Origin', '*') // for allowing any domain, insecure ->setHeader('Access-Control-Allow-Headers', '*') // for allowing any headers, insecure ->setHeader('Access-Control-Allow-Methods', 'GET, OPTIONS') // allows GET and OPTIONS methods only ->setHeader('Access-Control-Max-Age', '86400') ->setHeader('Cache-Control', 'public, max-age=86400') ->setStatusCode(200); } /** * @noRector ReturnTypeDeclarationRector */ Loading Loading @@ -250,6 +263,7 @@ class EpisodeController extends BaseController return $this->response ->setContentType('application/activity+json') ->setHeader('Access-Control-Allow-Origin', '*') ->setBody($collection->toJSON()); } } Loading
app/Config/Routes.php +1 −0 Original line number Diff line number Diff line Loading @@ -736,6 +736,7 @@ $routes->group('@(:podcastName)', function ($routes): void { ], ], ]); $routes->options('comments', 'EpisodeController::commentsPreflight/$1/$2'); $routes->get('comments', 'EpisodeController::comments/$1/$2', [ 'as' => 'episode-comments', 'application/activity+json' => [ Loading
app/Controllers/EpisodeController.php +14 −0 Original line number Diff line number Diff line Loading @@ -210,6 +210,19 @@ class EpisodeController extends BaseController ->setBody($podcastObject->toJSON()); } /** * @noRector ReturnTypeDeclarationRector */ public function commentsPreflight(): Response { return $this->response->setHeader('Access-Control-Allow-Origin', '*') // for allowing any domain, insecure ->setHeader('Access-Control-Allow-Headers', '*') // for allowing any headers, insecure ->setHeader('Access-Control-Allow-Methods', 'GET, OPTIONS') // allows GET and OPTIONS methods only ->setHeader('Access-Control-Max-Age', '86400') ->setHeader('Cache-Control', 'public, max-age=86400') ->setStatusCode(200); } /** * @noRector ReturnTypeDeclarationRector */ Loading Loading @@ -250,6 +263,7 @@ class EpisodeController extends BaseController return $this->response ->setContentType('application/activity+json') ->setHeader('Access-Control-Allow-Origin', '*') ->setBody($collection->toJSON()); } }