mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_welcome: Updated to use module:get_option instead of configmanager
This commit is contained in:
parent
f0887b0864
commit
b226545dec
1 changed files with 1 additions and 3 deletions
|
@ -6,10 +6,8 @@
|
|||
-- COPYING file in the source package for more information.
|
||||
--
|
||||
|
||||
local config = require "core.configmanager";
|
||||
|
||||
local host = module:get_host();
|
||||
local welcome_text = config.get("*", "core", "welcome_message") or "Hello $user, welcome to the $host IM server!";
|
||||
local welcome_text = module:get_option("welcome_message") or "Hello $user, welcome to the $host IM server!";
|
||||
|
||||
local st = require "util.stanza";
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue