recup stash

This commit is contained in:
p2405951
2026-02-24 16:43:16 +01:00
parent 3b304959a9
commit ffa77ad386
3 changed files with 83 additions and 0 deletions
+8
View File
@@ -3,6 +3,14 @@
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Route;
use App\Http\Controllers\ExportController;
use App\Http\Controllers\ProfilePhotoController;
Route::middleware('auth:sanctum')->group(function () {
Route::post('/profile-photo', [ProfilePhotoController::class, 'update']);
Route::delete('/profile-photo', [ProfilePhotoController::class, 'destroy']);
Route::get('/profile-photo', [ProfilePhotoController::class, 'show']);
});
Route::get('/export/ics/{userId}', [ExportController::class, 'exportIcs']);
Route::get("/hello", function (Request $request) {