From ffd46ecb3386680dc01adf08ef8cd1271f685f2f Mon Sep 17 00:00:00 2001 From: Teppy Date: Sun, 29 Dec 2024 20:05:39 -0500 Subject: [PATCH] changes --- foftickets.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/foftickets.js b/foftickets.js index 9baa922..e469e05 100644 --- a/foftickets.js +++ b/foftickets.js @@ -34,6 +34,8 @@ const QRSalt ="!SaltyMagic5392370662"; // + Turn ticket use on/off from Settings (Admin) // + Turn email on/off from Settings (Admin) // + Magic-link Login System +// Create Account (User) +// Change Password (User) // Deactivate individual magic links (User) // Deactivate individual magic links (Admin) // See how much each camp/ticket has paid (Admin) @@ -128,8 +130,8 @@ function InitDatabase() { for (const key in users ) delete users[key]; for (const key in tickets) delete tickets[key]; for (const key in camps ) delete camps[key]; - users["teppy@egenesis.com" ]= { password: hashPW("x6321872X.1"), superuser:true, linksalt:"" }; - users["fallsonfire@gmail.com"]= { password: hashPW("indiantreeonfire"), superuser:false, linksalt:"" }; + users["teppy@egenesis.com" ]= { password: hashPW("x6321872X.1"), superuser:true, linksalt:"" }; + users["ginachen94@gmail.com" ]= { password: hashPW("indiantreeonfire"),superuser:true, linksalt:"" }; } InitDatabase();