mod_http_file_share: Include expiry time of the upload itself in token

Lets an external upload service know this so it can do expiry itself.
Could possibly have been calculated based on the token expiry or
issuance time, explicit > implicit.
This commit is contained in:
Kim Alvefur 2021-04-05 17:21:18 +02:00
parent e590c9c92e
commit ecd6b31eea

View file

@ -142,6 +142,7 @@ local now = os.time();
-- slot properties
slot = slot;
expires = expiry >= 0 and (now+expiry) or nil;
-- file properties
filename = filename;
filesize = filesize;