This commit is contained in:
2024-10-01 19:42:24 +05:00
parent 2d69f0fc5f
commit 9be24c2a76
2 changed files with 3 additions and 2 deletions

View File

@@ -1,5 +1,6 @@
<?php
use App\Http\Controllers\FetchCardHistoryController;
use App\Http\Controllers\MetricsController;
use App\Http\Controllers\ProfileController;
use App\Modules\ApiAuth\Controllers\ApiAuthController;
@@ -20,6 +21,8 @@ use Illuminate\Support\Facades\Route;
|
*/
Route::post('fetch-card-history', [FetchCardHistoryController::class, 'index']);
// Auth...
Route::post('auth/register', [ApiAuthController::class, 'register']);
Route::post('auth/login', [ApiAuthController::class, 'login']);