docs: add a comment to schema default value

This commit is contained in:
Zaiming (Stone) Shi 2022-11-10 22:00:25 +01:00
parent 89b6cce0bd
commit f9c1f8cf32
1 changed files with 2 additions and 2 deletions

View File

@ -807,13 +807,13 @@ end}.
%% @doc Define a determined authentication plugin/module check order.
%% see detailed doc in emqx.conf
{mapping, "auth_order", "emqx.auth_order", [
{default, "none"},
{default, "none"}, % keep default value in sync with emqx_conf.erl
{datatype, string}
]}.
%% @doc Same as auth_order, but for ACL.
{mapping, "acl_order", "emqx.acl_order", [
{default, "none"},
{default, "none"}, % keep default value in sync with emqx_conf.erl
{datatype, string}
]}.