mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
plugins: Prefix module imports with prosody namespace
This commit is contained in:
parent
8136aa749a
commit
98922d54b1
100 changed files with 499 additions and 499 deletions
|
@ -1,10 +1,10 @@
|
|||
local mm = require "core.modulemanager";
|
||||
local mm = require "prosody.core.modulemanager";
|
||||
if mm.get_modules_for_host(module.host):contains("bookmarks2") then
|
||||
error("mod_bookmarks and mod_bookmarks2 are conflicting, please disable one of them.", 0);
|
||||
end
|
||||
|
||||
local st = require "util.stanza";
|
||||
local jid_split = require "util.jid".split;
|
||||
local st = require "prosody.util.stanza";
|
||||
local jid_split = require "prosody.util.jid".split;
|
||||
|
||||
local mod_pep = module:depends "pep";
|
||||
local private_storage = module:open_store("private", "map");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue