fixed missing contact_email from registration

This commit is contained in:
Codex Agent
2025-12-22 17:54:42 +01:00
parent 1eda29cfce
commit c8f0f880d2
5 changed files with 5 additions and 1 deletions

View File

@@ -166,6 +166,7 @@ class CheckoutAssignmentService
'name' => $session->package_snapshot['name'] ?? $user->name,
'slug' => Str::slug(($user->name ?: $user->email).' '.now()->timestamp),
'email' => $user->email,
'contact_email' => $user->email,
'is_active' => true,
'is_suspended' => false,
'subscription_tier' => 'free',