forked from Hay1tsme/artemis
add ip checking config options
This commit is contained in:
parent
88a1462304
commit
4744e8cf5f
@ -48,6 +48,18 @@ class ServerConfig:
|
|||||||
self.__config, "core", "server", "log_dir", default="logs"
|
self.__config, "core", "server", "log_dir", default="logs"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@property
|
||||||
|
def check_arcade_ip(self) -> bool:
|
||||||
|
return CoreConfig.get_config_field(
|
||||||
|
self.__config, "core", "server", "check_arcade_ip", default=False
|
||||||
|
)
|
||||||
|
|
||||||
|
@property
|
||||||
|
def strict_ip_checking(self) -> bool:
|
||||||
|
return CoreConfig.get_config_field(
|
||||||
|
self.__config, "core", "server", "strict_ip_checking", default=False
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
class TitleConfig:
|
class TitleConfig:
|
||||||
def __init__(self, parent_config: "CoreConfig") -> None:
|
def __init__(self, parent_config: "CoreConfig") -> None:
|
||||||
|
@ -6,6 +6,8 @@ server:
|
|||||||
is_develop: True
|
is_develop: True
|
||||||
threading: False
|
threading: False
|
||||||
log_dir: "logs"
|
log_dir: "logs"
|
||||||
|
check_arcade_ip: False
|
||||||
|
strict_ip_checking: False
|
||||||
|
|
||||||
title:
|
title:
|
||||||
loglevel: "info"
|
loglevel: "info"
|
||||||
|
Loading…
Reference in New Issue
Block a user