feat(Download): adds streaming and local download options

This commit is contained in:
Brock H Caldwell
2025-11-08 16:26:38 -06:00
parent 7dd40b4525
commit 37e13347b2
9 changed files with 48 additions and 3 deletions

View File

@@ -120,4 +120,10 @@ class UtilExtension
return $sentryConfig['javascript_url'] !== null &&
$sentryConfig['javascript_url'] !== '';
}
#[AsTwigFilter('base64_encode')]
public function base64_encode(string $data): string
{
return \base64_encode($data);
}
}