mod_http_upload/mod_http_upload.lua
changeset 3343 babb584e24a2
parent 3180 d34f5d969940
child 3344 6081cbfd1220
--- a/mod_http_upload/mod_http_upload.lua	Thu Sep 27 19:39:55 2018 +0200
+++ b/mod_http_upload/mod_http_upload.lua	Thu Sep 27 19:54:26 2018 +0200
@@ -326,10 +326,18 @@
 module:log("info", "URL: <%s>; Storage path: %s", module:http_url(), storage_path);
 
 function module.command(args)
+	-- luacheck: ignore 421/user
 	if args[1] == "expire" then
 		local split = require "util.jid".prepped_split;
 		for i = 2, #args do
-			assert(expire(split(args[i])));
+			local user, host = split(args[i]);
+			if user then
+				assert(expire(user, host));
+			else
+				for user in datamanager.users(host, module.name, "list") do
+					expire(user, host);
+				end
+			end
 		end
 	end
 end