14 lines
433 B
PHP
14 lines
433 B
PHP
|
<?php
|
||
|
use ProVM\Common\Controller\Mailboxes;
|
||
|
|
||
|
$app->group('/mailboxes', function($app) {
|
||
|
$app->post('/register', [Mailboxes::class, 'register']);
|
||
|
$app->delete('/unregister', [Mailboxes::class, 'unregister']);
|
||
|
$app->get('/registered', [Mailboxes::class, 'registered']);
|
||
|
$app->get('[/]', Mailboxes::class);
|
||
|
});
|
||
|
|
||
|
$app->group('/mailbox/{mailbox_id}', function($app) {
|
||
|
$app->get('[/]', [Mailboxes::class, 'get']);
|
||
|
});
|