mirror of
https://github.com/processone/ejabberd
synced 2025-10-06 03:50:15 +02:00
Rename is_user_exists -> user_exists
This commit is contained in:
parent
633b68db11
commit
cdb191bb48
15 changed files with 44 additions and 44 deletions
|
@ -31,7 +31,7 @@
|
|||
|
||||
-export([start/2, stop/1, init/2, check_password/3,
|
||||
set_password/3, try_register/3, remove_user/2,
|
||||
remove_user/3, is_user_exists/2, opt_type/1]).
|
||||
remove_user/3, user_exists/2, opt_type/1]).
|
||||
|
||||
-include("ejabberd.hrl").
|
||||
-include("logger.hrl").
|
||||
|
@ -73,7 +73,7 @@ get_process_name(Host, Integer) ->
|
|||
check_password(User, Server, Password) ->
|
||||
call_port(Server, [<<"auth">>, User, Server, Password]).
|
||||
|
||||
is_user_exists(User, Server) ->
|
||||
user_exists(User, Server) ->
|
||||
call_port(Server, [<<"isuser">>, User, Server]).
|
||||
|
||||
set_password(User, Server, Password) ->
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue