mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 06:37:37 +03:00
moduleapi: Remove unused and undocumented :has_feature and :has_identity
This commit is contained in:
parent
7a08d4ca27
commit
61c6bb76de
2 changed files with 0 additions and 16 deletions
|
@ -55,8 +55,6 @@ files["plugins/"] = {
|
||||||
"module.get_option_set",
|
"module.get_option_set",
|
||||||
"module.get_option_string",
|
"module.get_option_string",
|
||||||
"module.handle_items",
|
"module.handle_items",
|
||||||
"module.has_feature",
|
|
||||||
"module.has_identity",
|
|
||||||
"module.hook",
|
"module.hook",
|
||||||
"module.hook_global",
|
"module.hook_global",
|
||||||
"module.hook_object_event",
|
"module.hook_object_event",
|
||||||
|
|
|
@ -71,20 +71,6 @@ end
|
||||||
function api:add_extension(data)
|
function api:add_extension(data)
|
||||||
self:add_item("extension", data);
|
self:add_item("extension", data);
|
||||||
end
|
end
|
||||||
function api:has_feature(xmlns)
|
|
||||||
for _, feature in ipairs(self:get_host_items("feature")) do
|
|
||||||
if feature == xmlns then return true; end
|
|
||||||
end
|
|
||||||
return false;
|
|
||||||
end
|
|
||||||
function api:has_identity(category, identity_type, name)
|
|
||||||
for _, id in ipairs(self:get_host_items("identity")) do
|
|
||||||
if id.category == category and id.type == identity_type and id.name == name then
|
|
||||||
return true;
|
|
||||||
end
|
|
||||||
end
|
|
||||||
return false;
|
|
||||||
end
|
|
||||||
|
|
||||||
function api:fire_event(...)
|
function api:fire_event(...)
|
||||||
return (hosts[self.host] or prosody).events.fire_event(...);
|
return (hosts[self.host] or prosody).events.fire_event(...);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue