Update: 2026-05-08 00:52:01

This commit is contained in:
Hamza-Ayed
2026-05-08 00:52:01 +03:00
parent 522885d257
commit 4994994ad0
9 changed files with 671 additions and 236 deletions

View File

@@ -21,9 +21,11 @@ $routes = [
'v1/auth/logout' => ['POST', 'auth/logout.php'],
'v1/users' => ['GET', 'users/index.php'],
'v1/users/create' => ['POST', 'users/create.php'],
'v1/users/update' => ['POST', 'users/update.php'],
'v1/users/delete' => ['POST', 'users/delete.php'],
'v1/companies' => ['GET', 'companies/index.php'],
'v1/companies/create' => ['POST', 'companies/create.php'],
'v1/companies/update' => ['POST', 'companies/update.php'],
'v1/companies/delete' => ['POST', 'companies/delete.php'],
'v1/invoices' => ['GET', 'invoices/index.php'],
'v1/invoices/view' => ['GET', 'invoices/view.php'],