diff src/lib/User.luan @ 40:7ea33179592a

email notification
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 27 Feb 2025 16:44:20 -0700
parents e2b7f6393dab
children 818697418dbe
line wrap: on
line diff
--- a/src/lib/User.luan	Sun Nov 17 12:06:08 2024 -0700
+++ b/src/lib/User.luan	Thu Feb 27 16:44:20 2025 -0700
@@ -33,6 +33,9 @@
 		id = doc.id
 		email = doc.user_email
 		password = doc.password
+		was_notified = doc.was_notified=="true"
+		notify_email = doc.notify_email
+		multi_notify = doc.multi_notify=="true"
 	}
 end
 
@@ -42,6 +45,9 @@
 		id = user.id
 		user_email = user.email
 		password = user.password
+		was_notified = user.was_notified and "true" or nil
+		notify_email = user.notify_email
+		multi_notify = user.multi_notify and "true" or nil
 	}
 end
 
@@ -53,6 +59,10 @@
 		user.id = doc.id
 	end
 
+	function user.reload()
+		return User.get_by_id(user.id) or error(user.id)
+	end
+
 	function user.delete()
 		run_in_transaction( function()
 			local id = user.id
@@ -135,6 +145,7 @@
 			user = User.new{
 				email = email
 				password = new_password()
+				notify_email = email
 			}
 			user.save()
 		end