From 76ed7f551322588511fc4dc843a55dfc3b4e90a2 Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Sun, 3 Sep 2023 21:38:31 +0100 Subject: [PATCH] [skip ci] doc: check if accounts are expired in teh wolves db --- src/methods/account_new.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/methods/account_new.rs b/src/methods/account_new.rs index 012e4d9..a1b144d 100644 --- a/src/methods/account_new.rs +++ b/src/methods/account_new.rs @@ -34,6 +34,8 @@ pub mod email { if record.email.trim().ends_with("@skynet.ie") { continue; } + + // if using csv check if the account is within date // check if the email is already in the db if !check(db, &record.email).await {