aboutsummaryrefslogtreecommitdiffstats
path: root/core/moduleapi.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2013-04-27 19:44:37 +0200
committerKim Alvefur <zash@zash.se>2013-04-27 19:44:37 +0200
commit82b393b7fc749a59bcad5bf611e8f8b3efe805bd (patch)
treeac26dd93751bc5ff1526d9340600edb24f19bbbd /core/moduleapi.lua
parent0ccbb6e726adbc7da2a7e601b62d9ddf65479b3f (diff)
downloadprosody-82b393b7fc749a59bcad5bf611e8f8b3efe805bd.tar.gz
prosody-82b393b7fc749a59bcad5bf611e8f8b3efe805bd.zip
moduleapi: in module:provides(), add the name of the module in item._provided_by
Diffstat (limited to 'core/moduleapi.lua')
-rw-r--r--core/moduleapi.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/moduleapi.lua b/core/moduleapi.lua
index 764ed52a..ed75669b 100644
--- a/core/moduleapi.lua
+++ b/core/moduleapi.lua
@@ -335,6 +335,7 @@ function api:provides(name, item)
end
item.name = item_name;
end
+ item._provided_by = self.name;
self:add_item(name.."-provider", item);
end