|
@@ -0,0 +1,27 @@
|
|
|
+<?php
|
|
|
+
|
|
|
+/*
|
|
|
+ * This file is part of Packagist.
|
|
|
+ *
|
|
|
+ * (c) Jordi Boggiano <j.boggiano@seld.be>
|
|
|
+ * Nils Adermann <naderman@naderman.de>
|
|
|
+ *
|
|
|
+ * For the full copyright and license information, please view the LICENSE
|
|
|
+ * file that was distributed with this source code.
|
|
|
+ */
|
|
|
+
|
|
|
+namespace Packagist\WebBundle\Form\Handler;
|
|
|
+
|
|
|
+use FOS\UserBundle\Form\Handler\RegistrationFormHandler as BaseHandler;
|
|
|
+use FOS\UserBundle\Model\UserInterface;
|
|
|
+
|
|
|
+class RegistrationFormHandler extends BaseHandler
|
|
|
+{
|
|
|
+ protected function onSuccess(UserInterface $user, $confirmation)
|
|
|
+ {
|
|
|
+ $apiToken = substr($this->tokenGenerator->generateToken(), 0, 20);
|
|
|
+ $user->setApiToken($apiToken);
|
|
|
+
|
|
|
+ parent::onSuccess($user, $confirmation);
|
|
|
+ }
|
|
|
+}
|