Files
emails/ui/resources/routes/02_attachments.php
2022-11-29 11:12:06 -03:00

6 lines
162 B
PHP

<?php
use ProVM\Common\Controller\Attachments;
$app->group('/attachment/{attachment_id}', function($app) {
$app->get('[/]', [Attachments::class, 'get']);
});