From: Raphaƫl Gertz <git@rapsys.eu>
Date: Tue, 23 Feb 2021 23:32:40 +0000 (+0100)
Subject: Revert to phone only extra field
X-Git-Tag: 0.2.1~48
X-Git-Url: https://git.rapsys.eu/airbundle/commitdiff_plain/7c562ee58c5ac4f829426cf9909a9e214f1e7c11

Revert to phone only extra field
---

diff --git a/Form/RegisterType.php b/Form/RegisterType.php
index 83c80b5..d34fc0a 100644
--- a/Form/RegisterType.php
+++ b/Form/RegisterType.php
@@ -13,10 +13,7 @@ class RegisterType extends \Rapsys\UserBundle\Form\RegisterType {
 	 */
 	public function buildForm(FormBuilderInterface $builder, array $options) {
 		return parent::buildForm($builder, $options)
-			#TODO: add url ? add text ?
-			->add('phone', TelType::class, ['attr' => ['placeholder' => 'Your phone'], 'constraints' => [new NotBlank(['message' => 'Please provide your phone'])]])
-			->add('donation', UrlType::class, ['attr' => ['placeholder' => 'Your donation link']])
-			->add('site', UrlType::class, ['attr' => ['placeholder' => 'Your website']]);
+			->add('phone', TelType::class, ['attr' => ['placeholder' => 'Your phone'], 'required' => false]);
 	}
 
 	/**