Merge pull request #11718 from zmstone/1003-fix-authn-schema
fix(authn): "authentication" importance should not be "hidden"
This commit is contained in:
commit
9e11c13266
|
@ -1,7 +1,7 @@
|
||||||
%% -*- mode: erlang -*-
|
%% -*- mode: erlang -*-
|
||||||
{application, emqx_authn, [
|
{application, emqx_authn, [
|
||||||
{description, "EMQX Authentication"},
|
{description, "EMQX Authentication"},
|
||||||
{vsn, "0.1.27"},
|
{vsn, "0.1.28"},
|
||||||
{modules, []},
|
{modules, []},
|
||||||
{registered, [emqx_authn_sup, emqx_authn_registry]},
|
{registered, [emqx_authn_sup, emqx_authn_registry]},
|
||||||
{applications, [
|
{applications, [
|
||||||
|
|
|
@ -42,8 +42,8 @@ roots() -> [].
|
||||||
|
|
||||||
injected_fields() ->
|
injected_fields() ->
|
||||||
#{
|
#{
|
||||||
'mqtt.listener' => global_auth_fields(),
|
'mqtt.listener' => mqtt_listener_auth_fields(),
|
||||||
'roots.high' => mqtt_listener_auth_fields()
|
'roots.high' => global_auth_fields()
|
||||||
}.
|
}.
|
||||||
|
|
||||||
tags() ->
|
tags() ->
|
||||||
|
|
Loading…
Reference in New Issue