11 lines
339 B
PHP
11 lines
339 B
PHP
<?php
|
|
use Incoviba\Controller\API\Ventas\Promotions;
|
|
|
|
$app->group('/promotions', function($app) {
|
|
$app->post('/add[/]', [Promotions::class, 'add']);
|
|
$app->post('/edit[/]', [Promotions::class, 'edit']);
|
|
});
|
|
$app->group('/promotion/{promotion_id}', function($app) {
|
|
$app->delete('/remove[/]', [Promotions::class, 'remove']);
|
|
});
|