Result of running "make options"

This commit is contained in:
Badlop 2024-02-29 16:08:13 +01:00
parent 2378ea9c07
commit 5bb94f1d9e
3 changed files with 3 additions and 3 deletions

View File

@ -212,7 +212,7 @@ ram_db_type(Opts) when is_map(Opts) ->
ram_db_type(Host) ->
gen_mod:get_module_opt(Host, mod_muc, ram_db_type).
-spec regexp_room_id(gen_mod:opts() | global | binary()) -> <<>> | re:mp().
-spec regexp_room_id(gen_mod:opts() | global | binary()) -> <<>> | misc:re_mp().
regexp_room_id(Opts) when is_map(Opts) ->
gen_mod:get_opt(regexp_room_id, Opts);
regexp_room_id(Host) ->

View File

@ -39,7 +39,7 @@ default_node_config(Opts) when is_map(Opts) ->
default_node_config(Host) ->
gen_mod:get_module_opt(Host, mod_pubsub, default_node_config).
-spec force_node_config(gen_mod:opts() | global | binary()) -> [{re:mp(),[{atom(),atom() | integer()}]}].
-spec force_node_config(gen_mod:opts() | global | binary()) -> [{misc:re_mp(),[{atom(),atom() | integer()}]}].
force_node_config(Opts) when is_map(Opts) ->
gen_mod:get_opt(force_node_config, Opts);
force_node_config(Host) ->

View File

@ -118,7 +118,7 @@ ldap_memberattr_format(Opts) when is_map(Opts) ->
ldap_memberattr_format(Host) ->
gen_mod:get_module_opt(Host, mod_shared_roster_ldap, ldap_memberattr_format).
-spec ldap_memberattr_format_re(gen_mod:opts() | global | binary()) -> 'undefined' | re:mp().
-spec ldap_memberattr_format_re(gen_mod:opts() | global | binary()) -> 'undefined' | misc:re_mp().
ldap_memberattr_format_re(Opts) when is_map(Opts) ->
gen_mod:get_opt(ldap_memberattr_format_re, Opts);
ldap_memberattr_format_re(Host) ->