all
Some checks failed
Publish Docker Image / build-and-push (push) Failing after 2m13s

This commit is contained in:
Sam Kintop
2026-04-30 09:44:02 -05:00
parent 0a30837e3d
commit bf3870ccca
111 changed files with 8383 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<?php
namespace Aternos\Mclogs\Frontend\Action;
use Aternos\Mclogs\Util\URL;
class CreateLogAction extends \Aternos\Mclogs\Api\Action\CreateLogAction
{
protected bool $includeCookie = true;
protected bool $includeToken = false;
protected function getAllowedOrigin(): string
{
return URL::getBase()->toString();
}
protected function shouldAllowCredentials(): bool
{
return true;
}
}