This commit is contained in:
2022-11-25 20:52:59 -03:00
parent efed50cd7f
commit 9d1a1cc0f2
18 changed files with 786 additions and 1 deletions

View File

@ -0,0 +1,10 @@
<?php
use ProVM\Common\Controller\Emails;
$app->group('/emails', function($app) {
$app->group('/mailbox/{mailbox}', function ($app) {
$app->get('[/]', [Emails::class, 'messages']);
});
$app->get('/mailboxes', Emails::class);
$app->get('[/]', Emails::class);
});

View File

@ -0,0 +1,4 @@
<?php
use ProVM\Common\Controller\Home;
$app->get('[/]', Home::class);