This commit is contained in:
Andrea Vos 2022-02-25 17:22:06 +01:00
parent dfd6cd143c
commit 302a8541f3

View File

@ -6,7 +6,7 @@ const upsertBanArchive = async (db, type, value) => {
} }
const removeBanArchive = async (db, type, value) => { const removeBanArchive = async (db, type, value) => {
await db.get(SQL`DELETE FROM bans WHERE type = ${type} AND value = ${value});`); await db.get(SQL`DELETE FROM bans WHERE type = ${type} AND value = ${value};`);
} }
const normaliseEmail = (email) => { const normaliseEmail = (email) => {