feat: tag another emqx schema as `emqx`

This commit is contained in:
Thales Macedo Garitezi 2022-12-16 14:27:00 -03:00
parent e6a8be1ff6
commit d5a462486e
2 changed files with 5 additions and 2 deletions

View File

@ -111,7 +111,7 @@
comma_separated_atoms/0
]).
-export([namespace/0, roots/0, roots/1, fields/1, desc/1]).
-export([namespace/0, roots/0, roots/1, fields/1, desc/1, tags/0]).
-export([conf_get/2, conf_get/3, keys/2, filter/1]).
-export([server_ssl_opts_schema/2, client_ssl_opts_schema/1, ciphers_schema/1]).
-export([sc/2, map/2]).
@ -120,6 +120,9 @@
namespace() -> broker.
tags() ->
[<<"EMQX">>].
roots() ->
%% TODO change config importance to a field metadata
roots(high) ++ roots(medium) ++ roots(low).

View File

@ -1,7 +1,7 @@
%% -*- mode: erlang -*-
{application, emqx_authn, [
{description, "EMQX Authentication"},
{vsn, "0.1.11"},
{vsn, "0.1.12"},
{modules, []},
{registered, [emqx_authn_sup, emqx_authn_registry]},
{applications, [kernel, stdlib, emqx_resource, emqx_connector, ehttpc, epgsql, mysql, jose]},