mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_cron: Add a 'weekly' job frequency
This commit is contained in:
parent
d6070eea1f
commit
8aa16eaec0
4 changed files with 9 additions and 2 deletions
|
@ -521,6 +521,11 @@ function api:daily(name, fun)
|
|||
self:cron({ name = name; when = "daily"; run = fun });
|
||||
end
|
||||
|
||||
function api:weekly(name, fun)
|
||||
if type(name) == "function" then fun, name = name, nil; end
|
||||
self:cron({ name = name; when = "weekly"; run = fun });
|
||||
end
|
||||
|
||||
local path_sep = package.config:sub(1,1);
|
||||
function api:get_directory()
|
||||
return self.resource_path or self.path and (self.path:gsub("%"..path_sep.."[^"..path_sep.."]*$", "")) or nil;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue