Compare commits
No commits in common. "3eca490d0a11a293c887db67200ddb1ed47b2443" and "24a414ab66449a345148d68f47722c54c51c7ea0" have entirely different histories.
3eca490d0a
...
24a414ab66
|
@ -1,8 +1,4 @@
|
|||
# Changelog
|
||||
## [0.10.1] - 2025-03-25
|
||||
### Improved
|
||||
- Se ha modificado el script de creación de usuarios, añadiendole la opcion del tipo de visionalizacion por defecto de la vista "grupos".
|
||||
|
||||
## [0.10.0] - 2025-03-25
|
||||
### Added
|
||||
- Nuevo endpoint ogRepository. Convertir imagen en imagen virtual.
|
||||
|
|
|
@ -20,8 +20,6 @@ class LoadDefaultUserAdminCommand extends Command
|
|||
CONST string PLAIN_PASSWORD = '12345678';
|
||||
const string USERNAME = 'ogadmin';
|
||||
|
||||
const string DEFAULT_GROUPS_VIEW = 'card';
|
||||
|
||||
public function __construct(
|
||||
private readonly EntityManagerInterface $entityManager
|
||||
)
|
||||
|
@ -39,7 +37,6 @@ class LoadDefaultUserAdminCommand extends Command
|
|||
|
||||
$user = new User();
|
||||
$user->setUsername(self::USERNAME);
|
||||
$user->setGroupsView(self::DEFAULT_GROUPS_VIEW);
|
||||
$user->setRoles([UserGroupPermissions::ROLE_SUPER_ADMIN]);
|
||||
$user->setPassword($hash);
|
||||
|
||||
|
|
Loading…
Reference in New Issue