Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 15451 | Rev 15460 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 15451 Rev 15457
Línea 432... Línea 432...
432
                                'controller' => '\LeadersLinked\Controller\UserController',
432
                                'controller' => '\LeadersLinked\Controller\UserController',
433
                                'action' => 'upload'
433
                                'action' => 'upload'
434
                            ]
434
                            ]
435
                        ]
435
                        ]
436
                    ],
436
                    ],
-
 
437
                    'request-access' => [
-
 
438
                        'type' => Literal::class,
-
 
439
                        'options' => [
-
 
440
                            'route' => '/request-access',
-
 
441
                            'defaults' => [
-
 
442
                                'controller' => '\LeadersLinked\Controller\UserRequestAccessController',
-
 
443
                                'action' => 'index'
-
 
444
                            ]
-
 
445
                        ],
-
 
446
                        'may_terminate' => true,
-
 
447
                        'child_routes' => [
-
 
448
                            'approve' => [
-
 
449
                                'type' => Segment::class,
-
 
450
                                'options' => [
-
 
451
                                    'route' => '/edit/:id',
-
 
452
                                    'constraints' => [
-
 
453
                                        'id' => '[A-Za-z0-9\-]+\=*'
-
 
454
                                    ],
-
 
455
                                    'defaults' => [
-
 
456
                                        'controller' => '\LeadersLinked\Controller\UserRequestAccessController',
-
 
457
                                        'action' => 'approve'
-
 
458
                                    ]
-
 
459
                                ]
-
 
460
                            ],
-
 
461
                            'reject' => [
-
 
462
                                'type' => Segment::class,
-
 
463
                                'options' => [
-
 
464
                                    'route' => '/reject/:id',
-
 
465
                                    'constraints' => [
-
 
466
                                        'id' => '[A-Za-z0-9\-]+\=*'
-
 
467
                                    ],
-
 
468
                                    'defaults' => [
-
 
469
                                        'controller' => '\LeadersLinked\Controller\UserRequestAccessController',
-
 
470
                                        'action' => 'reject'
-
 
471
                                    ]
-
 
472
                                ]
-
 
473
                            ],
-
 
474
                        ]    
-
 
475
                    ],
437
                ]
476
                ]
438
            ],
477
            ],
439
            /** START FEEDS * */
478
            /** START FEEDS * */
440
            'feeds' => [
479
            'feeds' => [
441
                'type' => Literal::class,
480
                'type' => Literal::class,
Línea 2857... Línea 2896...
2857
                                    ],
2896
                                    ],
2858
                                ]
2897
                                ]
2859
                            ],
2898
                            ],
2860
                        ]
2899
                        ]
2861
                    ],
2900
                    ],
-
 
2901
                    'positions' => [
-
 
2902
                        'type' => Literal::class,
-
 
2903
                        'options' => [
-
 
2904
                            'route' => '/positions',
-
 
2905
                            'defaults' => [
-
 
2906
                                'controller' => '\LeadersLinked\Controller\PositionController',
-
 
2907
                                'action' => 'index'
-
 
2908
                            ]
-
 
2909
                        ],
-
 
2910
                        'may_terminate' => true,
-
 
2911
                        'child_routes' => [
-
 
2912
                            'add' => [
-
 
2913
                                'type' => Literal::class,
-
 
2914
                                'options' => [
-
 
2915
                                    'route' => '/add',
-
 
2916
                                    'defaults' => [
-
 
2917
                                        'controller' => '\LeadersLinked\Controller\PositionController',
-
 
2918
                                        'action' => 'add'
-
 
2919
                                    ]
-
 
2920
                                ]
-
 
2921
                            ],
-
 
2922
                            'edit' => [
-
 
2923
                                'type' => Segment::class,
-
 
2924
                                'options' => [
-
 
2925
                                    'route' => '/edit/:id',
-
 
2926
                                    'constraints' => [
-
 
2927
                                        'id' => '[A-Za-z0-9\-]+\=*'
-
 
2928
                                    ],
-
 
2929
                                    'defaults' => [
-
 
2930
                                        'controller' => '\LeadersLinked\Controller\PositionController',
-
 
2931
                                        'action' => 'edit'
-
 
2932
                                    ]
-
 
2933
                                ]
-
 
2934
                            ],
-
 
2935
                            'delete' => [
-
 
2936
                                'type' => Segment::class,
-
 
2937
                                'options' => [
-
 
2938
                                    'route' => '/delete/:id',
-
 
2939
                                    'constraints' => [
-
 
2940
                                        'id' => '[A-Za-z0-9\-]+\=*'
-
 
2941
                                    ],
-
 
2942
                                    'defaults' => [
-
 
2943
                                        'controller' => '\LeadersLinked\Controller\PositionController',
-
 
2944
                                        'action' => 'delete'
-
 
2945
                                    ]
-
 
2946
                                ]
-
 
2947
                            ],
-
 
2948
                            'subordinates' => [
-
 
2949
                                'type' => Segment::class,
-
 
2950
                                'options' => [
-
 
2951
                                    'route' => '/subordinates/:job_description_id',
-
 
2952
                                    'constraints' => [
-
 
2953
                                        'job_description_id' => '[A-Za-z0-9\-]+\=*'
-
 
2954
                                    ],
-
 
2955
                                    'defaults' => [
-
 
2956
                                        'controller' => '\LeadersLinked\Controller\PositionController',
-
 
2957
                                        'action' => 'subordinates'
-
 
2958
                                    ]
-
 
2959
                                ]
-
 
2960
                            ],
-
 
2961
                        ]
-
 
2962
                    ],
2862
                ]
2963
                ]
2863
            ],
2964
            ],
Línea 2864... Línea 2965...
2864
            
2965
            
Línea 3324... Línea 3425...
3324
                                    ]
3425
                                    ]
3325
                                ]
3426
                                ]
3326
                            ],
3427
                            ],
3327
                        ]
3428
                        ]
3328
                    ],
3429
                    ],
3329
                    'positions' => [
-
 
3330
                        'type' => Literal::class,
-
 
3331
                        'options' => [
-
 
3332
                            'route' => '/positions',
-
 
3333
                            'defaults' => [
-
 
3334
                                'controller' => '\LeadersLinked\Controller\PositionController',
-
 
3335
                                'action' => 'index'
-
 
3336
                            ]
-
 
3337
                        ],
-
 
3338
                        'may_terminate' => true,
-
 
3339
                        'child_routes' => [
-
 
3340
                            'add' => [
-
 
3341
                                'type' => Literal::class,
-
 
3342
                                'options' => [
-
 
3343
                                    'route' => '/add',
-
 
3344
                                    'defaults' => [
-
 
3345
                                        'controller' => '\LeadersLinked\Controller\PositionController',
-
 
3346
                                        'action' => 'add'
-
 
3347
                                    ]
-
 
3348
                                ]
-
 
3349
                            ],
-
 
3350
                            'edit' => [
-
 
3351
                                'type' => Segment::class,
-
 
3352
                                'options' => [
-
 
3353
                                    'route' => '/edit/:id',
-
 
3354
                                    'constraints' => [
-
 
3355
                                        'id' => '[A-Za-z0-9\-]+\=*'
-
 
3356
                                    ],
-
 
3357
                                    'defaults' => [
-
 
3358
                                        'controller' => '\LeadersLinked\Controller\PositionController',
-
 
3359
                                        'action' => 'edit'
-
 
3360
                                    ]
-
 
3361
                                ]
-
 
3362
                            ],
-
 
3363
                            'delete' => [
-
 
3364
                                'type' => Segment::class,
-
 
3365
                                'options' => [
-
 
3366
                                    'route' => '/delete/:id',
-
 
3367
                                    'constraints' => [
-
 
3368
                                        'id' => '[A-Za-z0-9\-]+\=*'
-
 
3369
                                    ],
-
 
3370
                                    'defaults' => [
-
 
3371
                                        'controller' => '\LeadersLinked\Controller\PositionController',
-
 
3372
                                        'action' => 'delete'
-
 
3373
                                    ]
-
 
3374
                                ]
-
 
3375
                            ],
-
 
3376
                            'subordinates' => [
-
 
3377
                                'type' => Segment::class,
-
 
3378
                                'options' => [
-
 
3379
                                    'route' => '/subordinates/:job_description_id',
-
 
3380
                                    'constraints' => [
-
 
3381
                                        'job_description_id' => '[A-Za-z0-9\-]+\=*'
-
 
3382
                                    ],
-
 
3383
                                    'defaults' => [
-
 
3384
                                        'controller' => '\LeadersLinked\Controller\PositionController',
-
 
3385
                                        'action' => 'subordinates'
-
 
3386
                                    ]
-
 
3387
                                ]
-
 
3388
                            ],
-
 
3389
                        ]
-
 
3390
                    ],
-
 
-
 
3430
  
3391
                    'push-templates' => [
3431
                    'push-templates' => [
3392
                        'type' => Literal::class,
3432
                        'type' => Literal::class,
3393
                        'options' => [
3433
                        'options' => [
3394
                            'route' => '/push-templates',
3434
                            'route' => '/push-templates',
3395
                            'defaults' => [
3435
                            'defaults' => [
Línea 6378... Línea 6418...
6378
            \LeadersLinked\Controller\ActivityCenterController::Class  => \LeadersLinked\Factory\Controller\ActivityCenterControllerFactory::class,
6418
            \LeadersLinked\Controller\ActivityCenterController::Class  => \LeadersLinked\Factory\Controller\ActivityCenterControllerFactory::class,
6379
            \LeadersLinked\Controller\ActivityCenterPerformanceEvaluationController::class  => \LeadersLinked\Factory\Controller\ActivityCenterPerformanceEvaluationControllerFactory::class,
6419
            \LeadersLinked\Controller\ActivityCenterPerformanceEvaluationController::class  => \LeadersLinked\Factory\Controller\ActivityCenterPerformanceEvaluationControllerFactory::class,
Línea 6380... Línea 6420...
6380
            
6420
            
6381
            \LeadersLinked\Controller\MyCoachController::Class  => \LeadersLinked\Factory\Controller\MyCoachControllerFactory::class,
6421
            \LeadersLinked\Controller\MyCoachController::Class  => \LeadersLinked\Factory\Controller\MyCoachControllerFactory::class,
-
 
6422
            \LeadersLinked\Controller\MyCoachCategoryController::class  => \LeadersLinked\Factory\Controller\MyCoachCategoryControllerFactory::class,
-
 
6423
            
-
 
6424
            \LeadersLinked\Controller\UserRequestAccessController::class  => \LeadersLinked\Factory\Controller\UserRequestAccessControllerFactory::class,
-
 
6425
            
-
 
6426
            
6382
            \LeadersLinked\Controller\MyCoachCategoryController::class  => \LeadersLinked\Factory\Controller\MyCoachCategoryControllerFactory::class,
6427
            
6383
        ],
6428
        ],
6384
        'aliases' => [
6429
        'aliases' => [
6385
            '\LeadersLinked\Controller\AuthController' => \LeadersLinked\Controller\AuthController::class,
6430
            '\LeadersLinked\Controller\AuthController' => \LeadersLinked\Controller\AuthController::class,
6386
            '\LeadersLinked\Controller\FollowerController' => \LeadersLinked\Controller\FollowerController::class,
6431
            '\LeadersLinked\Controller\FollowerController' => \LeadersLinked\Controller\FollowerController::class,
Línea 6492... Línea 6537...
6492
        
6537
        
6493
        
6538
        
-
 
6539
        
-
 
6540
            '\LeadersLinked\Controller\MyCoachController' => \LeadersLinked\Controller\MyCoachController::class,
-
 
6541
            '\LeadersLinked\Controller\MyCoachCategoryController' => \LeadersLinked\Controller\MyCoachCategoryController::class,
Línea 6494... Línea 6542...
6494
        
6542
            
6495
            '\LeadersLinked\Controller\MyCoachController' => \LeadersLinked\Controller\MyCoachController::class,
6543
            
6496
            '\LeadersLinked\Controller\MyCoachCategoryController' => \LeadersLinked\Controller\MyCoachCategoryController::class,
6544
            '\LeadersLinked\Controller\UserRequestAccessController' => \LeadersLinked\Controller\UserRequestAccessController::Class,
6497
        
6545