v0.8.0-rc

This commit is contained in:
2020-03-27 02:59:53 -03:00
parent 00f9a10cbf
commit 723040358b
51 changed files with 792 additions and 492 deletions

View File

@ -2,6 +2,5 @@
use ProVM\NotariaRaby\Common\Controller\Web\Admin\Notificacion;
$app->group('/notificacion', function($app) {
$app->get('[/]', Notificacion::class);
$app->post('[/]', [Notificacion::class, 'do_edit']);
});

View File

@ -0,0 +1,6 @@
<?php
use ProVM\NotariaRaby\Common\Controller\Web\Admin\Transparencia;
$app->group('/transparencia', function($app) {
$app->post('[/]', [Transparencia::class, 'do_edit']);
});