Files
streakfit-api/functional/users/routes/api.php
T
neckfireandClaude Opus 4.8 af32669931
Build & Deploy / build (push) Successful in 18s
StreakFit — API Laravel 13 OSDD + Octane/FrankenPHP
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-19 03:00:17 +02:00

8 lines
264 B
PHP

<?php
use Functional\Users\Http\Controllers\AuthController;
use Illuminate\Support\Facades\Route;
// Le préfixe api/ est ajouté par UsersServiceProvider::withRouting() : GET /api/me.
Route::get('me', [AuthController::class, 'me'])->middleware('auth:sanctum');