mirror of
https://github.com/processone/ejabberd.git
synced 2024-12-20 17:27:00 +01:00
14 lines
394 B
Erlang
14 lines
394 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_mnesia, search_all_hosts).
|
|
|