Merge remote-tracking branch 'origin/dev' into features/notifications

This commit is contained in:
2026-03-12 15:52:54 +01:00
5 changed files with 87 additions and 2 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) {