Rechtstexte und B2C-Vertragsabläufe absichern

This commit is contained in:
2026-08-22 14:31:56 +02:00
parent d320a4fd7a
commit a31a235422
58 changed files with 2502 additions and 316 deletions
@@ -58,6 +58,10 @@ $first = saas_register_tenant_owner($pdo, [
'email' => $email,
'password' => $password,
'password_confirm' => $password,
'customer_type' => 'business',
'accept_terms' => true,
'acknowledge_privacy' => true,
'accept_dpa' => true,
]);
$second = saas_register_tenant_owner($pdo, [
'tenant_name' => 'M3 Tenant Choice B',
@@ -66,6 +70,10 @@ $second = saas_register_tenant_owner($pdo, [
'email' => $email,
'password' => $password,
'password_confirm' => $password,
'customer_type' => 'business',
'accept_terms' => true,
'acknowledge_privacy' => true,
'accept_dpa' => true,
]);
tenant_resolution_assert('first registration succeeds', $first['ok'] === true, $failures, $passes);