mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-20 16:15:59 +01:00
92913389a5
Reported in https://stackoverflow.com/questions/63499864/how-to-search-registered-user-on-ejabberd-server-from-client-side-using-smack-li
14 lines
387 B
Erlang
14 lines
387 B
Erlang
%% Generated automatically
|
|
%% DO NOT EDIT: run `make options` instead
|
|
|
|
-module(mod_vcard_mnesia_opt).
|
|
|
|
-export([search_all_hosts/1]).
|
|
|
|
-spec search_all_hosts(gen_mod:opts() | global | binary()) -> boolean().
|
|
search_all_hosts(Opts) when is_map(Opts) ->
|
|
gen_mod:get_opt(search_all_hosts, Opts);
|
|
search_all_hosts(Host) ->
|
|
gen_mod:get_module_opt(Host, mod_vcard, search_all_hosts).
|
|
|