aboutsummaryrefslogtreecommitdiff
path: root/src/mod_pubsub_mnesia.erl
diff options
context:
space:
mode:
authorEvgeny Khramtsov <ekhramtsov@process-one.net>2019-06-14 12:33:26 +0300
committerEvgeny Khramtsov <ekhramtsov@process-one.net>2019-06-14 12:33:26 +0300
commita02cff0e780bb735531594c4ece81e8628f79782 (patch)
tree6fe7d8219d14f58183be1741fcea262c216db447 /src/mod_pubsub_mnesia.erl
parentReturn jid_malformed error when sending presence without nick to conference (diff)
Use new configuration validator
Diffstat (limited to 'src/mod_pubsub_mnesia.erl')
-rw-r--r--src/mod_pubsub_mnesia.erl32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/mod_pubsub_mnesia.erl b/src/mod_pubsub_mnesia.erl
new file mode 100644
index 000000000..8f780a623
--- /dev/null
+++ b/src/mod_pubsub_mnesia.erl
@@ -0,0 +1,32 @@
+%%%----------------------------------------------------------------------
+%%% ejabberd, Copyright (C) 2002-2019 ProcessOne
+%%%
+%%% This program is free software; you can redistribute it and/or
+%%% modify it under the terms of the GNU General Public License as
+%%% published by the Free Software Foundation; either version 2 of the
+%%% License, or (at your option) any later version.
+%%%
+%%% This program is distributed in the hope that it will be useful,
+%%% but WITHOUT ANY WARRANTY; without even the implied warranty of
+%%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+%%% General Public License for more details.
+%%%
+%%% You should have received a copy of the GNU General Public License along
+%%% with this program; if not, write to the Free Software Foundation, Inc.,
+%%% 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+%%%
+%%%----------------------------------------------------------------------
+-module(mod_pubsub_mnesia).
+
+%% API
+-export([init/3]).
+
+%%%===================================================================
+%%% API
+%%%===================================================================
+init(Host, ServerHost, Opts) ->
+ pubsub_index:init(Host, ServerHost, Opts).
+
+%%%===================================================================
+%%% Internal functions
+%%%===================================================================