diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_storage_internal.lua | 2 | ||||
-rw-r--r-- | plugins/mod_storage_sql.lua | 2 | ||||
-rw-r--r-- | plugins/storage/mod_xep0227.lua | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/plugins/mod_storage_internal.lua b/plugins/mod_storage_internal.lua index 92ac3ef5..b72f08e6 100644 --- a/plugins/mod_storage_internal.lua +++ b/plugins/mod_storage_internal.lua @@ -24,4 +24,4 @@ function driver:purge(user) return datamanager.purge(user, host); end -module:add_item("data-driver", driver); +module:provides("storage", driver); diff --git a/plugins/mod_storage_sql.lua b/plugins/mod_storage_sql.lua index ea25c90b..f7c0da7c 100644 --- a/plugins/mod_storage_sql.lua +++ b/plugins/mod_storage_sql.lua @@ -400,4 +400,4 @@ function driver:purge(username) return commit(true, changed); end -module:add_item("data-driver", driver); +module:provides("storage", driver); diff --git a/plugins/storage/mod_xep0227.lua b/plugins/storage/mod_xep0227.lua index b6d2e627..ac0441b1 100644 --- a/plugins/storage/mod_xep0227.lua +++ b/plugins/storage/mod_xep0227.lua @@ -160,4 +160,4 @@ function driver:open(host, datastore, typ) return instance; end -module:add_item("data-driver", driver); +module:provides("storage", driver); |