mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2025-08-29 07:50:08 +08:00
Move Repositories
Signed-off-by: Dillon-Brown <dillon.brown@salesagility.com>
This commit is contained in:
parent
093b4cfb20
commit
ca2a8b413d
3 changed files with 4 additions and 4 deletions
|
@ -1,12 +1,12 @@
|
|||
security:
|
||||
encoders:
|
||||
App\Entity\User:
|
||||
App\Module\Users\Entity\User:
|
||||
algorithm: auto
|
||||
|
||||
providers:
|
||||
app_user_provider:
|
||||
entity:
|
||||
class: App\Entity\User
|
||||
class: App\Module\Users\Entity\User
|
||||
|
||||
firewalls:
|
||||
dev:
|
||||
|
|
|
@ -23,7 +23,7 @@ use Symfony\Component\Security\Core\User\UserInterface;
|
|||
* },
|
||||
* )
|
||||
* @ORM\Table(name="users", indexes={@ORM\Index(name="idx_user_name", columns={"user_name", "is_group", "status", "last_name", "first_name", "id"}, options={"lengths": {null, null, null, 30, 30}})}))
|
||||
* @ORM\Entity(repositoryClass="App\Repository\UserRepository")
|
||||
* @ORM\Entity(repositoryClass="App\Module\Users\Repository\UserRepository")
|
||||
*/
|
||||
class User implements UserInterface, EquatableInterface
|
||||
{
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
namespace App\Repository;
|
||||
namespace App\Module\Users\Repository;
|
||||
|
||||
use App\Module\users\Entity\User;
|
||||
use Doctrine\ORM\EntityRepository;
|
Loading…
Add table
Add a link
Reference in a new issue