Files
emails/ui/resources/routes/02_attachments.php

6 lines
162 B
PHP
Raw Normal View History

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