diff --git a/app/Http/Controllers/Factories/UserValidationRulesFactory.php b/app/Http/Controllers/Factories/UserValidationRulesFactory.php index 140cea81..ba63a8b4 100644 --- a/app/Http/Controllers/Factories/UserValidationRulesFactory.php +++ b/app/Http/Controllers/Factories/UserValidationRulesFactory.php @@ -59,6 +59,9 @@ final class UserValidationRulesFactory 'email_verified' => 'nullable|boolean', 'active' => 'nullable|boolean', 'groups' => 'sometimes|int_array', + 'public_profile_show_photo' => 'sometimes|boolean', + 'public_profile_show_fullname' => 'sometimes|boolean', + 'public_profile_show_email' => 'sometimes|boolean', ]; } @@ -93,6 +96,9 @@ final class UserValidationRulesFactory 'email_verified' => 'nullable|boolean', 'active' => 'nullable|boolean', 'groups' => 'sometimes|int_array', + 'public_profile_show_photo' => 'sometimes|boolean', + 'public_profile_show_fullname' => 'sometimes|boolean', + 'public_profile_show_email' => 'sometimes|boolean', ]; } } \ No newline at end of file