13 lines
387 B
PHP
13 lines
387 B
PHP
<?php
|
|
use Common\Controller\Cuentas;
|
|
|
|
$app->group('/cuentas', function($app) {
|
|
$app->post('/add[/]', [Cuentas::class, 'add']);
|
|
$app->post('/edit[/]', [Cuentas::class, 'edit']);
|
|
$app->get('[/]', Cuentas::class);
|
|
});
|
|
$app->group('/cuenta/{cuenta_id}', function($app) {
|
|
$app->post('/edit[/]', [Cuentas::class, 'editOne']);
|
|
$app->get('[/]', [Cuentas::class, 'get']);
|
|
});
|