-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
on adapte les seeds pour pouvoir être lancés sur clever cloud
- Loading branch information
Showing
8 changed files
with
85 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -72,7 +72,9 @@ public function run() | |
'niveau' => 2, // AFUP_DROITS_NIVEAU_ADMINISTRATEUR, | ||
'prenom' => 'Admin', | ||
'email' => '[email protected]', | ||
'niveau_modules' => '00000' | ||
'niveau_modules' => '00000', | ||
'roles' => '', | ||
'adresse' => '', | ||
], | ||
// utilisateur ayant expiré, avec une date de cotisation fixe, utile pour les tests | ||
[ | ||
|
@@ -84,6 +86,8 @@ public function run() | |
'prenom' => 'Jean', | ||
'email' => '[email protected]', | ||
'niveau_modules' => '00000', | ||
'roles' => '', | ||
'adresse' => '', | ||
], | ||
// utilisateurs avec des cotisations à dates fixes pour les tests | ||
[ | ||
|
@@ -97,7 +101,9 @@ public function run() | |
'niveau_modules' => '00000', | ||
'adresse' => '15, main road', | ||
'code_postal' => '93501-1100', | ||
'ville' => 'Mojave, CA' | ||
'ville' => 'Mojave, CA', | ||
'roles' => '', | ||
'adresse' => '', | ||
], | ||
[ | ||
'id' => self::ID_USER_PERSONNE_LIE_PERSONNE_MORALE_FIXED_COTISATIONS, | ||
|
@@ -110,6 +116,8 @@ public function run() | |
'roles' => '["ROLE_COMPANY_MANAGER"]', | ||
'id_personne_morale' => self::ID_PERSONNE_MORALE_HELIOS_AEROSPACE, | ||
'niveau_modules' => '00000', | ||
'roles' => '', | ||
'adresse' => '', | ||
], | ||
[ | ||
'id' => self::ID_USER_PERSONNE_MORALE, | ||
|
@@ -122,6 +130,8 @@ public function run() | |
'roles' => '["ROLE_COMPANY_MANAGER"]', | ||
'id_personne_morale' => self::ID_PERSONNE_MORALE_MY_CORP, | ||
'niveau_modules' => '00000', | ||
'roles' => '', | ||
'adresse' => '', | ||
], | ||
[ | ||
'id' => self::ID_USER_PERSONNE_MORALE_NON_MANAGER, | ||
|
@@ -134,7 +144,9 @@ public function run() | |
'roles' => '[]', | ||
'id_personne_morale' => self::ID_PERSONNE_MORALE_MY_CORP, | ||
'niveau_modules' => '00000', | ||
'etat' => 1 | ||
'etat' => 1, | ||
'roles' => '', | ||
'adresse' => '', | ||
], | ||
[ | ||
'id' => self::ID_USER_PERSONNE_PHYSIQUE, | ||
|
@@ -147,6 +159,7 @@ public function run() | |
'roles' => '[]', | ||
'etat' => User::STATUS_ACTIVE, | ||
'niveau_modules' => '00000', | ||
'adresse' => '', | ||
], | ||
]; | ||
|
||
|