diff options
author | Kim Alvefur <zash@zash.se> | 2011-08-08 18:23:53 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2011-08-08 18:23:53 +0200 |
commit | d29b8f340a4c795dd40a856f208d0d22017b328b (patch) | |
tree | 5a748fe8764bdd39f8bfdc2bec7685202ea60c65 /core | |
parent | 43ea7d28756d860df2762f3db7984fe1fd28a68b (diff) | |
download | prosody-d29b8f340a4c795dd40a856f208d0d22017b328b.tar.gz prosody-d29b8f340a4c795dd40a856f208d0d22017b328b.zip |
core.modulemanager, mod_disco: Add support for XEP-0128: Service Discovery Extensions
Diffstat (limited to 'core')
-rw-r--r-- | core/modulemanager.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/modulemanager.lua b/core/modulemanager.lua index 07a2b1c9..3cf893a1 100644 --- a/core/modulemanager.lua +++ b/core/modulemanager.lua @@ -278,6 +278,9 @@ end function api:add_identity(category, type, name) self:add_item("identity", {category = category, type = type, name = name}); end +function api:add_extension(data) + self:add_item("extension", data); +end function api:fire_event(...) return (hosts[self.host] or prosody).events.fire_event(...); |