12 lines
374 B
PHP
12 lines
374 B
PHP
<?php
|
|
use ProVM\Common\Controller\Attachments;
|
|
|
|
$app->group('/attachments', function($app) {
|
|
$app->put('/grab[/]', [Attachments::class, 'grab']);
|
|
$app->get('/pending[/]', [Attachments::class, 'pending']);
|
|
$app->get('[/]', Attachments::class);
|
|
});
|
|
$app->group('/attachment/{attachment_id}', function($app) {
|
|
$app->get('[/]', [Attachments::class, 'get']);
|
|
});
|