fix(ft): add emqx_ft_schema to ee schemas
This commit is contained in:
parent
d333187c5a
commit
18aa39f892
|
@ -63,8 +63,7 @@
|
|||
emqx_psk_schema,
|
||||
emqx_limiter_schema,
|
||||
emqx_slow_subs_schema,
|
||||
emqx_mgmt_api_key_schema,
|
||||
emqx_ft_schema
|
||||
emqx_mgmt_api_key_schema
|
||||
]).
|
||||
|
||||
%% root config should not have a namespace
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{application, emqx_ee_conf, [
|
||||
{description, "EMQX Enterprise Edition configuration schema"},
|
||||
{vsn, "0.1.0"},
|
||||
{vsn, "0.1.1"},
|
||||
{registered, []},
|
||||
{applications, [
|
||||
kernel,
|
||||
|
|
|
@ -8,7 +8,10 @@
|
|||
|
||||
-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() ->
|
||||
emqx_conf_schema:namespace().
|
||||
|
|
Loading…
Reference in New Issue