feat: blue and green

This commit is contained in:
2026-05-19 12:03:08 +02:00
parent 5ff1fdae4f
commit 2630272995
4 changed files with 129 additions and 47 deletions
+3 -1
View File
@@ -19,7 +19,9 @@ Route::prefix('auth')->group(function (): void {
});
});
Route::get('/health', function () {
return response()->json(['status' => 'ok']);
});
Route::middleware('auth:sanctum')->group(function (): void {
Route::post('device-tokens', [DeviceTokenController::class, 'store']);
Route::delete('device-tokens', [DeviceTokenController::class, 'destroy']);