Fix URI search config update
This commit is contained in:
parent
7e3592d70b
commit
56df7815b5
|
@ -336,8 +336,8 @@ const CONFIG = {
|
||||||
},
|
},
|
||||||
SEARCH: {
|
SEARCH: {
|
||||||
REMOTE_URI: {
|
REMOTE_URI: {
|
||||||
USERS: config.get<boolean>('search.remote_uri.users'),
|
get USERS () { return config.get<boolean>('search.remote_uri.users') },
|
||||||
ANONYMOUS: config.get<boolean>('search.remote_uri.anonymous')
|
get ANONYMOUS () { return config.get<boolean>('search.remote_uri.anonymous') }
|
||||||
},
|
},
|
||||||
SEARCH_INDEX: {
|
SEARCH_INDEX: {
|
||||||
get ENABLED () { return config.get<boolean>('search.search_index.enabled') },
|
get ENABLED () { return config.get<boolean>('search.search_index.enabled') },
|
||||||
|
|
Loading…
Reference in New Issue