diff src/add_post.js.luan @ 40:7ea33179592a

email notification
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 27 Feb 2025 16:44:20 -0700
parents f4708943f29e
children 9298b04607ae
line wrap: on
line diff
--- a/src/add_post.js.luan	Sun Nov 17 12:06:08 2024 -0700
+++ b/src/add_post.js.luan	Thu Feb 27 16:44:20 2025 -0700
@@ -18,6 +18,7 @@
 local Shared = require "site:/lib/Shared.luan"
 local post_html = Shared.post_html or error()
 local http_push_to_users = Shared.http_push_to_users or error()
+local Notify = require "site:/lib/Notify.luan"
 
 
 return function()
@@ -38,6 +39,7 @@
 		chat.updated = now
 		chat.save()
 	end )
+	Notify.add(chat)
 	local html = `post_html(post)`
 	local js = "added("..json_string(html)..")"
 	chat.http_push(js)