aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Entity
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2015-04-01 21:58:08 +0200
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2015-04-01 21:58:08 +0200
commite3c34bfc06f3ea266a418d6246560f15d3f73e2a (patch)
tree6c6465b6e936b0d38d0d3fdc489fb9e576a5e09c /src/Wallabag/CoreBundle/Entity
parentd6fa2f70ac3c798b28ce33c6c143f45c09c74062 (diff)
parentc844dc0c50bb4f1044154401310af25eb21b0f11 (diff)
downloadwallabag-e3c34bfc06f3ea266a418d6246560f15d3f73e2a.tar.gz
wallabag-e3c34bfc06f3ea266a418d6246560f15d3f73e2a.tar.zst
wallabag-e3c34bfc06f3ea266a418d6246560f15d3f73e2a.zip
Merge pull request #1164 from wallabag/v2-remove-username-in-config
Remove ability to change username
Diffstat (limited to 'src/Wallabag/CoreBundle/Entity')
-rw-r--r--src/Wallabag/CoreBundle/Entity/User.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Entity/User.php b/src/Wallabag/CoreBundle/Entity/User.php
index 1652170f..ff08c8fb 100644
--- a/src/Wallabag/CoreBundle/Entity/User.php
+++ b/src/Wallabag/CoreBundle/Entity/User.php
@@ -4,6 +4,7 @@ namespace Wallabag\CoreBundle\Entity;
4 4
5use Doctrine\Common\Collections\ArrayCollection; 5use Doctrine\Common\Collections\ArrayCollection;
6use Doctrine\ORM\Mapping as ORM; 6use Doctrine\ORM\Mapping as ORM;
7use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
7use Symfony\Component\Security\Core\User\UserInterface; 8use Symfony\Component\Security\Core\User\UserInterface;
8use Symfony\Component\Security\Core\User\AdvancedUserInterface; 9use Symfony\Component\Security\Core\User\AdvancedUserInterface;
9use Symfony\Component\Validator\Constraints as Assert; 10use Symfony\Component\Validator\Constraints as Assert;
@@ -17,6 +18,9 @@ use JMS\Serializer\Annotation\Expose;
17 * @ORM\Table 18 * @ORM\Table
18 * @ORM\HasLifecycleCallbacks() 19 * @ORM\HasLifecycleCallbacks()
19 * @ExclusionPolicy("all") 20 * @ExclusionPolicy("all")
21 *
22 * @UniqueEntity("email")
23 * @UniqueEntity("username")
20 */ 24 */
21class User implements AdvancedUserInterface, \Serializable 25class User implements AdvancedUserInterface, \Serializable
22{ 26{