mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
plugins: Switch to :get_option_period() for time range options
Improves readability ("1 day" vs 86400) and centralizes validation.
This commit is contained in:
parent
903e945d09
commit
1987a7411f
18 changed files with 24 additions and 38 deletions
|
@ -4,7 +4,7 @@ local secret = module:get_option_string("turn_external_secret");
|
|||
local host = module:get_option_string("turn_external_host", module.host);
|
||||
local user = module:get_option_string("turn_external_user");
|
||||
local port = module:get_option_number("turn_external_port", 3478);
|
||||
local ttl = module:get_option_number("turn_external_ttl", 86400);
|
||||
local ttl = module:get_option_period("turn_external_ttl", "1 day");
|
||||
local tcp = module:get_option_boolean("turn_external_tcp", false);
|
||||
local tls_port = module:get_option_number("turn_external_tls_port");
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue