util.session: Add 'since' property with timestamp of session creation

This commit is contained in:
Matthew Wild 2023-03-29 13:01:28 +01:00
parent 124b4fa302
commit 75bf9e6eff

View file

@ -1,10 +1,12 @@
local initialize_filters = require "prosody.util.filters".initialize;
local time = require "util.time";
local logger = require "prosody.util.logger";
local function new_session(typ)
local session = {
type = typ .. "_unauthed";
base_type = typ;
since = time.now();
};
return session;
end