[opensearch]: improve

This commit is contained in:
Jesús
2021-08-14 18:36:17 -05:00
parent ef66da4d27
commit 06315e3e02
3 changed files with 23 additions and 3 deletions

View File

@@ -8,6 +8,20 @@ import flask
from flask import request
SETTINGS_INFO = collections.OrderedDict([
('app_public', {
'type': bool,
'default': False,
'comment': '''Set app public mode, disabled by default''',
'hidden': True,
'category': 'network',
}),
('app_url', {
'type': str,
'default': 'http://localhost',
'comment': '''Set URL of app 'http://localhost' by default''',
'hidden': True,
'category': 'network',
}),
('route_tor', {
'type': int,
'default': 0,