mirror of
https://github.com/JGH0/Todo-App-Backend.git
synced 2026-06-03 13:28:47 +02:00
Merge branch 'main' into feature/marketplace
This commit is contained in:
@@ -36,6 +36,11 @@ $routes->group('api/v1', ['namespace' => 'App\Controllers\Api\V1', 'filter' => '
|
||||
// Marketplace - Public access
|
||||
$routes->get('marketplace/themes', 'MarketplaceController::index');
|
||||
$routes->get('marketplace/themes/(:num)', 'MarketplaceController::show/$1');
|
||||
|
||||
// JWT Authentication
|
||||
$routes->post('auth/jwt/register', 'AuthController::jwtRegister');
|
||||
$routes->post('auth/jwt/login', 'AuthController::jwtLogin');
|
||||
$routes->post('auth/jwt/refresh', 'AuthController::jwtRefresh');
|
||||
});
|
||||
|
||||
// Protected endpoints (API key authentication required)
|
||||
|
||||
Reference in New Issue
Block a user