Implement form field for user profile to allow the update of a user's local preference

This commit is contained in:
2025-10-22 16:27:16 +02:00
parent 2a362a3340
commit 6d72ce6909
7 changed files with 62 additions and 1 deletions

View File

@@ -18,6 +18,7 @@ final readonly class UpdateProfileCommandHandler
public function updateProfile(User $user, UpdateProfileCommand $command): void
{
$user->setPhonenumber($command->phonenumber);
$user->setLocale($command->locale);
foreach ($command->notificationFlags as $flag => $values) {
$user->setNotificationImmediately($flag, $values['immediate_email']);