view src/active.js.luan @ 86:625ffdf6499d

web app
author Franklin Schmidt <fschmidt@gmail.com>
date Wed, 12 Mar 2025 12:26:19 -0600
parents 624654817f99
children 3053a4fc10be
line wrap: on
line source

local Luan = require "luan:Luan.luan"
local error = Luan.error
local Http = require "luan:http/Http.luan"
local User = require "site:/lib/User.luan"
local current_user = User.current or error()
local Notify = require "site:/lib/Notify.luan"
local remove_notify = Notify.remove or error()
local Chat = require "site:/lib/Chat.luan"
local get_chat_by_id = Chat.get_by_id or error()


return function()
	local user = current_user() or error()
	remove_notify(user)
	local chat = Http.request.parameters.chat
	if chat ~= nil then
		chat = get_chat_by_id(chat) or error()
		chat.read(user)
	end
end