1
0
Fork 0
mirror of https://github.com/processone/ejabberd synced 2025-10-06 12:00:15 +02:00

Fix issues on import improvements

This commit is contained in:
Christophe Romain 2016-11-22 16:01:08 +01:00
parent a2fb493f91
commit cc63bcc997
5 changed files with 9 additions and 8 deletions

View file

@ -14,7 +14,7 @@
%% API
-export([start_link/2]).
-export([init/2, stop/1, get_vcard/2, set_vcard/4, search/4,
remove_user/2, import/2, search_fields/1, search_reported/1,
remove_user/2, import/3, search_fields/1, search_reported/1,
mod_opt_type/1, opt_type/1]).
%% gen_server callbacks
@ -157,7 +157,7 @@ search_items(Entries, State) ->
remove_user(_User, _Server) ->
{atomic, not_implemented}.
import(_, _) ->
import(_, _, _) ->
pass.
%%%===================================================================