-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'afup:master' into feat-1180-plan-du-site
- Loading branch information
Showing
56 changed files
with
152 additions
and
878 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
db/migrations/20240718093800_suppression_accreditation_presse.php
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php | ||
|
||
use Phinx\Migration\AbstractMigration; | ||
|
||
class SuppressionAccreditationPresse extends AbstractMigration | ||
{ | ||
public function change() | ||
{ | ||
$this->execute('DROP TABLE IF EXISTS afup_accreditation_presse'); | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php | ||
|
||
use Phinx\Migration\AbstractMigration; | ||
|
||
class SuppressionBlacklist extends AbstractMigration | ||
{ | ||
public function change() | ||
{ | ||
$this->execute('DROP TABLE IF EXISTS afup_blacklist'); | ||
} | ||
} |
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,8 @@ public function run() | |
'niveau_modules' => '00000', | ||
'adresse' => '15, main road', | ||
'code_postal' => '93501-1100', | ||
'ville' => 'Mojave, CA' | ||
'ville' => 'Mojave, CA', | ||
'roles' => '', | ||
], | ||
[ | ||
'id' => self::ID_USER_PERSONNE_LIE_PERSONNE_MORALE_FIXED_COTISATIONS, | ||
|
@@ -110,6 +115,7 @@ public function run() | |
'roles' => '["ROLE_COMPANY_MANAGER"]', | ||
'id_personne_morale' => self::ID_PERSONNE_MORALE_HELIOS_AEROSPACE, | ||
'niveau_modules' => '00000', | ||
'adresse' => '', | ||
], | ||
[ | ||
'id' => self::ID_USER_PERSONNE_MORALE, | ||
|
@@ -122,6 +128,7 @@ public function run() | |
'roles' => '["ROLE_COMPANY_MANAGER"]', | ||
'id_personne_morale' => self::ID_PERSONNE_MORALE_MY_CORP, | ||
'niveau_modules' => '00000', | ||
'adresse' => '', | ||
], | ||
[ | ||
'id' => self::ID_USER_PERSONNE_MORALE_NON_MANAGER, | ||
|
@@ -134,7 +141,8 @@ public function run() | |
'roles' => '[]', | ||
'id_personne_morale' => self::ID_PERSONNE_MORALE_MY_CORP, | ||
'niveau_modules' => '00000', | ||
'etat' => 1 | ||
'etat' => 1, | ||
'adresse' => '', | ||
], | ||
[ | ||
'id' => self::ID_USER_PERSONNE_PHYSIQUE, | ||
|
@@ -147,6 +155,7 @@ public function run() | |
'roles' => '[]', | ||
'etat' => User::STATUS_ACTIVE, | ||
'niveau_modules' => '00000', | ||
'adresse' => '', | ||
], | ||
]; | ||
|
||
|
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.