Commit 3275121a authored by Jean-Philippe Metivier's avatar Jean-Philippe Metivier
Browse files

Polishing

parent c0d05459
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -4,6 +4,7 @@ use Application\Provider\IdentityProvider;
use Application\Provider\IdentityProviderFactory;
use UnicaenUtilisateur\Entity\Db\Role;
use UnicaenUtilisateur\Entity\Db\User;
use UnicaenUtilisateur\ORM\Event\Listeners\HistoriqueListener;
use UnicaenUtilisateur\ORM\Event\Listeners\HistoriqueListenerFactory;
use UnicaenUtilisateur\Provider\Privilege\RolePrivileges;
use UnicaenUtilisateur\Provider\Privilege\UtilisateurPrivileges;
+7 −0
Original line number Diff line number Diff line
@@ -81,6 +81,7 @@ return [
                'options' => [
                    'route'    => '/categorie',
                    'defaults' => [
                        /** @see CategorieController::indexAction(); */
                        'controller' => CategorieController::class,
                        'action'     => 'index',
                    ],
@@ -92,6 +93,7 @@ return [
                        'options' => [
                            'route'    => '/afficher-metiers/:categorie',
                            'defaults' => [
                                /** @see CategorieController::afficherMetiersAction(); */
                                'controller' => CategorieController::class,
                                'action'     => 'afficher-metiers',
                            ],
@@ -103,6 +105,7 @@ return [
                        'options' => [
                            'route'    => '/ajouter',
                            'defaults' => [
                                /** @see CategorieController::ajouterAction(); */
                                'controller' => CategorieController::class,
                                'action'     => 'ajouter',
                            ],
@@ -114,6 +117,7 @@ return [
                        'options' => [
                            'route'    => '/modifier/:categorie',
                            'defaults' => [
                                /** @see CategorieController::modifierAction() */
                                'controller' => CategorieController::class,
                                'action'     => 'modifier',
                            ],
@@ -124,6 +128,7 @@ return [
                        'options' => [
                            'route'    => '/historiser/:categorie',
                            'defaults' => [
                                /** @see CategorieController::historiserAction() */
                                'controller' => CategorieController::class,
                                'action'     => 'historiser',
                            ],
@@ -134,6 +139,7 @@ return [
                        'options' => [
                            'route'    => '/restaurer/:categorie',
                            'defaults' => [
                                /** @see CategorieController::restaurerAction() */
                                'controller' => CategorieController::class,
                                'action'     => 'restaurer',
                            ],
@@ -144,6 +150,7 @@ return [
                        'options' => [
                            'route'    => '/supprimer/:categorie',
                            'defaults' => [
                                /** @see CategorieController::supprimerAction() */
                                'controller' => CategorieController::class,
                                'action'     => 'supprimer',
                            ],
+3 −0
Original line number Diff line number Diff line
@@ -73,6 +73,7 @@ return [
                'options' => [
                    'route'    => '/corps',
                    'defaults' => [
                        /** @see CorpsController::indexAction() */
                        'controller' => CorpsController::class,
                        'action'     => 'index',
                    ],
@@ -84,6 +85,7 @@ return [
                        'options' => [
                            'route'    => '/afficher-agents/:corps',
                            'defaults' => [
                                /** @see CorpsController::afficherAgentsAction() */
                                'controller' => CorpsController::class,
                                'action'     => 'afficher-agents',
                            ],
@@ -95,6 +97,7 @@ return [
                        'options' => [
                            'route'    => '/modifier-niveaux/:corps',
                            'defaults' => [
                                /** @see CorpsController::modifierNiveauxAction() */
                                'controller' => CorpsController::class,
                                'action'     => 'modifier-niveaux',
                            ],
+4 −0
Original line number Diff line number Diff line
@@ -82,6 +82,7 @@ return [
                        'options' => [
                            'route'    => '/correspondance-type',
                            'defaults' => [
                                /** @see CorrespondanceTypeController::indexAction() */
                                'controller' => CorrespondanceTypeController::class,
                                'action'     => 'index',
                            ],
@@ -93,6 +94,7 @@ return [
                                'options' => [
                                    'route'    => '/afficher/:type',
                                    'defaults' => [
                                        /** @see CorrespondanceTypeController::afficherAction() */
                                        'controller' => CorrespondanceTypeController::class,
                                        'action'     => 'afficher',
                                    ],
@@ -108,6 +110,7 @@ return [
                'options' => [
                    'route'    => '/correspondance',
                    'defaults' => [
                        /** @see CorrespondanceController::indexAction() */
                        'controller' => CorrespondanceController::class,
                        'action'     => 'index',
                    ],
@@ -119,6 +122,7 @@ return [
                        'options' => [
                            'route'    => '/afficher-agents/:correspondance',
                            'defaults' => [
                                /** @see CorrespondanceController::afficherAgentsAction() */
                                'controller' => CorrespondanceController::class,
                                'action'     => 'afficher-agents',
                            ],
+2 −0
Original line number Diff line number Diff line
@@ -57,6 +57,7 @@ return [
                'options' => [
                    'route'    => '/grade',
                    'defaults' => [
                        /** @see GradeController::indexAction() */
                        'controller' => GradeController::class,
                        'action'     => 'index',
                    ],
@@ -68,6 +69,7 @@ return [
                        'options' => [
                            'route'    => '/afficher-agents/:grade',
                            'defaults' => [
                                /** @see GradeController::afficherAgentsAction() */
                                'controller' => GradeController::class,
                                'action'     => 'afficher-agents',
                            ],
Loading