Implement account removal API #1

Merged
aidan merged 3 commits from delete-email into main 2025-04-17 21:54:27 +00:00
2 changed files with 11 additions and 1 deletions
Showing only changes of commit 279abe89d9 - Show all commits

2
.gitignore vendored
View File

@ -137,7 +137,7 @@ drizzle/
bun.lockb
migrate.txt
db.sqlite3
ratelimit.json.example
ratelimit.json
# Docker
docker-compose.yml

10
ratelimit.json.example Normal file
View File

@ -0,0 +1,10 @@
{
"/list": {
"windowMs": 60000,
"limit": 20
},
"/add": {
"windowMs": 60000,
"limit": 10
}
}