Skip to content

Commit

Permalink
[3.0.36] Fix: missing default configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
mauricelambert authored Jun 18, 2024
1 parent 1d2a14c commit 255e5aa
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion WebScripts/WebScripts.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
the Server class and the Configuration class).
"""

__version__ = "1.0.6"
__version__ = "1.0.7"
__author__ = "Maurice Lambert"
__author_email__ = "[email protected]"
__maintainer__ = "Maurice Lambert"
Expand Down Expand Up @@ -170,16 +170,21 @@ class Configuration(DefaultNamespace):
"log_level": 0,
"statics_path": [],
"scripts_path": [],
"json_scripts_config": [],
"ini_scripts_config": [],
"modules_path": [],
"exclude_auth_paths": ["/static/", "/js/"],
"exclude_auth_pages": ["/api/", "/auth/", "/web/auth/"],
"auth_script": None,
"active_auth": False,
"webproxy_number": None,
"smtp_starttls": None,
"smtp_ssl": None,
"documentations_path": [],
"accept_unknow_user": True,
"force_file_permissions": True,
"auth_failures_to_blacklist": None,
"blacklist_time": None,
"accept_unauthenticated_user": True,
}
__required__ = ("interface", "port")
Expand Down
2 changes: 1 addition & 1 deletion WebScripts/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
This tool runs CLI scripts and displays output in a Web Interface.
"""

__version__ = "3.0.35"
__version__ = "3.0.36"
__author__ = "Maurice Lambert"
__author_email__ = "[email protected]"
__maintainer__ = "Maurice Lambert"
Expand Down
2 changes: 1 addition & 1 deletion WebScripts/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
This tool runs CLI scripts and displays output in a Web Interface.
"""

__version__ = "3.0.35"
__version__ = "3.0.36"
__author__ = "Maurice Lambert"
__author_email__ = "[email protected]"
__maintainer__ = "Maurice Lambert"
Expand Down

0 comments on commit 255e5aa

Please sign in to comment.