Mercurial > prosody-modules
comparison mod_http_upload/mod_http_upload.lua @ 3961:6fd9c9708422
mod_http_upload: Add some kind of help message to prosodyctl command
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Mon, 30 Mar 2020 19:56:04 +0200 |
parents | 53fc4b612fb2 |
children | 190e74e097ee |
comparison
equal
deleted
inserted
replaced
3960:c8e4efef5cdb | 3961:6fd9c9708422 |
---|---|
425 for user in assert(datamanager.users(host, module.name, "list")) do | 425 for user in assert(datamanager.users(host, module.name, "list")) do |
426 expire(user, host); | 426 expire(user, host); |
427 end | 427 end |
428 end | 428 end |
429 end | 429 end |
430 end | 430 else |
431 end | 431 print("prosodyctl mod_http_upload expire [host or user@host]+") |
432 | 432 print("\tProcess upload expiry for the given list of hosts and/or users"); |
433 return 1; | |
434 end | |
435 end | |
436 |