fix(ft): add emqx_ft_schema to ee schemas

This commit is contained in:
Ilya Averyanov 2023-04-05 01:04:11 +03:00
parent d333187c5a
commit 18aa39f892
3 changed files with 6 additions and 4 deletions

View File

@ -63,8 +63,7 @@
emqx_psk_schema, emqx_psk_schema,
emqx_limiter_schema, emqx_limiter_schema,
emqx_slow_subs_schema, emqx_slow_subs_schema,
emqx_mgmt_api_key_schema, emqx_mgmt_api_key_schema
emqx_ft_schema
]). ]).
%% root config should not have a namespace %% root config should not have a namespace

View File

@ -1,6 +1,6 @@
{application, emqx_ee_conf, [ {application, emqx_ee_conf, [
{description, "EMQX Enterprise Edition configuration schema"}, {description, "EMQX Enterprise Edition configuration schema"},
{vsn, "0.1.0"}, {vsn, "0.1.1"},
{registered, []}, {registered, []},
{applications, [ {applications, [
kernel, kernel,

View File

@ -8,7 +8,10 @@
-export([namespace/0, roots/0, fields/1, translations/0, translation/1]). -export([namespace/0, roots/0, fields/1, translations/0, translation/1]).
-define(EE_SCHEMA_MODULES, [emqx_license_schema]). -define(EE_SCHEMA_MODULES, [
emqx_license_schema,
emqx_ft_schema
]).
namespace() -> namespace() ->
emqx_conf_schema:namespace(). emqx_conf_schema:namespace().