Zona admin

This commit is contained in:
2020-05-26 23:04:49 -04:00
parent d0aba43371
commit 31f308f5c7
26 changed files with 1291 additions and 1 deletions

View File

@ -0,0 +1,8 @@
<?php
use ProVM\KI\Common\Controller\Web\Admin\Faq;
$app->group('/faqs', function($app) {
$app->post('/add', [Faq::class, 'add']);
$app->post('/delete', [Faq::class, 'delete']);
$app->get('[/]', Faq::class);
});