Files
papa-kind-treff.info/public/api/avatar.php
Lars Gebhardt-Kusche aa86001760
All checks were successful
Deploy / deploy (push) Successful in 1m7s
avatar
2026-07-28 02:03:01 +02:00

13 lines
297 B
PHP

<?php
declare(strict_types=1);
require_once dirname(__DIR__, 2) . '/config/fileload.php';
use App\Avatar\AvatarManager;
$svg = AvatarManager::fetchSvgFromQuery($_GET);
header('Content-Type: image/svg+xml; charset=utf-8');
header('Cache-Control: public, max-age=604800, immutable');
echo $svg;