Proyectos de Subversion LeadersLinked - Services

Rev

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

Rev 696 Rev 697
Línea 1720... Línea 1720...
1720
                            'block' => [
1720
                            'block' => [
1721
                                'type' => Segment::class,
1721
                                'type' => Segment::class,
1722
                                'options' => [
1722
                                'options' => [
1723
                                    'route' => '/block/:id',
1723
                                    'route' => '/block/:id',
1724
                                    'constraints' => [
1724
                                    'constraints' => [
1725
                                        'id' => '[A-Za-z0-9\-]+\=*'
1725
                                        'id' => '[A-Za-z0-9\-]+'
1726
                                    ],
1726
                                    ],
1727
                                    'defaults' => [
1727
                                    'defaults' => [
1728
                                        'controller' => '\LeadersLinked\Controller\InMailController',
1728
                                        'controller' => '\LeadersLinked\Controller\InMailController',
1729
                                        'action' => 'blockUser'
1729
                                        'action' => 'blockUser'
1730
                                    ]
1730
                                    ]
Línea 1735... Línea 1735...
1735
                    'messages' => [
1735
                    'messages' => [
1736
                        'type' => Segment::class,
1736
                        'type' => Segment::class,
1737
                        'options' => [
1737
                        'options' => [
1738
                            'route' => '/messages/:uuid',
1738
                            'route' => '/messages/:uuid',
1739
                            'constraints' => [
1739
                            'constraints' => [
1740
                                'uuid' => '[A-Za-z0-9\-]+\=*'
1740
                                'uuid' => '[A-Za-z0-9\-]+'
1741
                            ],
1741
                            ],
1742
                            'defaults' => [
1742
                            'defaults' => [
1743
                                'controller' => '\LeadersLinked\Controller\InMailController',
1743
                                'controller' => '\LeadersLinked\Controller\InMailController',
1744
                                'action' => 'getMessages'
1744
                                'action' => 'getMessages'
1745
                            ]
1745
                            ]
Línea 1749... Línea 1749...
1749
                            'send' => [
1749
                            'send' => [
1750
                                'type' => Segment::class,
1750
                                'type' => Segment::class,
1751
                                'options' => [
1751
                                'options' => [
1752
                                    'route' => '/send/:uuid',
1752
                                    'route' => '/send/:uuid',
1753
                                    'constraints' => [
1753
                                    'constraints' => [
1754
                                        'uuid' => '[A-Za-z0-9\-]+\=*'
1754
                                        'uuid' => '[A-Za-z0-9\-]+'
1755
                                    ],
1755
                                    ],
1756
                                    'defaults' => [
1756
                                    'defaults' => [
1757
                                        'controller' => '\LeadersLinked\Controller\InMailController',
1757
                                        'controller' => '\LeadersLinked\Controller\InMailController',
1758
                                        'action' => 'sendMessage'
1758
                                        'action' => 'sendMessage'
1759
                                    ]
1759
                                    ]
Línea 1762... Línea 1762...
1762
                            'delete' => [
1762
                            'delete' => [
1763
                                'type' => Segment::class,
1763
                                'type' => Segment::class,
1764
                                'options' => [
1764
                                'options' => [
1765
                                    'route' => '/delete/:uuid',
1765
                                    'route' => '/delete/:uuid',
1766
                                    'constraints' => [
1766
                                    'constraints' => [
1767
                                        'uuid' => '[A-Za-z0-9\-]+\=*'
1767
                                        'uuid' => '[A-Za-z0-9\-]+'
1768
                                    ],
1768
                                    ],
1769
                                    'defaults' => [
1769
                                    'defaults' => [
1770
                                        'controller' => '\LeadersLinked\Controller\InMailController',
1770
                                        'controller' => '\LeadersLinked\Controller\InMailController',
1771
                                        'action' => 'deleteMessage'
1771
                                        'action' => 'deleteMessage'
1772
                                    ]
1772
                                    ]