refactor: no support for listener level authentication for now
This commit is contained in:
parent
e978d86c86
commit
2d6ca69ffb
|
@ -1880,7 +1880,9 @@ mqtt_listener(Bind) ->
|
||||||
default => <<"3s">>
|
default => <<"3s">>
|
||||||
}
|
}
|
||||||
)},
|
)},
|
||||||
{?EMQX_AUTHENTICATION_CONFIG_ROOT_NAME, authentication(listener)}
|
{?EMQX_AUTHENTICATION_CONFIG_ROOT_NAME, (authentication(listener))#{
|
||||||
|
importance => ?IMPORTANCE_HIDDEN
|
||||||
|
}}
|
||||||
].
|
].
|
||||||
|
|
||||||
base_listener(Bind) ->
|
base_listener(Bind) ->
|
||||||
|
|
|
@ -580,6 +580,8 @@ authentication_schema() ->
|
||||||
#{
|
#{
|
||||||
required => {false, recursively},
|
required => {false, recursively},
|
||||||
desc => ?DESC(gateway_common_authentication),
|
desc => ?DESC(gateway_common_authentication),
|
||||||
|
%% we do not expose this to the user for now
|
||||||
|
importance => ?IMPORTANCE_HIDDEN,
|
||||||
examples => emqx_authn_api:authenticator_examples()
|
examples => emqx_authn_api:authenticator_examples()
|
||||||
}
|
}
|
||||||
).
|
).
|
||||||
|
|
Loading…
Reference in New Issue