Added privacy policy, upgrades

This commit is contained in:
2025-11-27 23:59:12 +01:00
parent fd4caaaa27
commit 75bb86f918
11 changed files with 704 additions and 493 deletions

View File

@@ -0,0 +1,17 @@
<?php
declare(strict_types=1);
namespace Tests\Feature;
use Tests\TestCase;
class PrivacyPolicyReachabilityTest extends TestCase
{
public function test_privacy_policy_is_reachable()
{
$response = $this->get('/privacy-policy');
$response->assertStatus(200);
}
}