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
|
@ -7,15 +7,15 @@
|
|||
--
|
||||
|
||||
|
||||
local jid_bare = require "util.jid".bare;
|
||||
local jid_split = require "util.jid".split;
|
||||
local st = require "util.stanza";
|
||||
local is_contact_subscribed = require "core.rostermanager".is_contact_subscribed;
|
||||
local jid_bare = require "prosody.util.jid".bare;
|
||||
local jid_split = require "prosody.util.jid".split;
|
||||
local st = require "prosody.util.stanza";
|
||||
local is_contact_subscribed = require "prosody.core.rostermanager".is_contact_subscribed;
|
||||
local pairs = pairs;
|
||||
local next = next;
|
||||
local type = type;
|
||||
local unpack = table.unpack;
|
||||
local calculate_hash = require "util.caps".calculate_hash;
|
||||
local calculate_hash = require "prosody.util.caps".calculate_hash;
|
||||
local core_post_stanza = prosody.core_post_stanza;
|
||||
local bare_sessions = prosody.bare_sessions;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue