12 lines
456 B
PHP
12 lines
456 B
PHP
<?php
|
|
use ProVM\Common\Controller\Emails;
|
|
|
|
$app->group('/emails', function($app) {
|
|
$app->get('/mailboxes', [Emails::class, 'mailboxes']);
|
|
$app->group('/messages', function($app) {
|
|
$app->post('/attachments[/]', [Emails::class, 'withAttachments']);
|
|
$app->post('[/]', [Emails::class, 'messages']);
|
|
});
|
|
$app->post('/attachments', [Emails::class, 'attachments']);
|
|
$app->post('/attachment', [Emails::class, 'attachment']);
|
|
}); |