Add account deletion cleanup route

This commit is contained in:
2026-05-09 06:50:22 -04:00
parent a8d2688020
commit 91821a0fc9
7 changed files with 724 additions and 1 deletions
+4
View File
@@ -359,6 +359,10 @@ function testEnv(
get(key: string): Promise<string | null> {
return Promise.resolve(values.get(key) ?? null);
},
delete(key: string): Promise<void> {
values.delete(key);
return Promise.resolve();
},
},
ELY_STORAGE: testR2Bucket(),
ELY_RATE_LIMITER: {