Files
emails/api/resources/routes/01_emails.php
2022-11-09 15:20:04 -03:00

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']);
});