[conf] Clean of DOMAINS global variable
This commit is contained in:
parent
1cd1bd74a1
commit
e4fb3b8bb1
|
@ -10,7 +10,7 @@ import click
|
|||
|
||||
|
||||
from .cli import cli
|
||||
from ..conf import config, write_config, DOMAINS, DOMAINSDICT
|
||||
from ..conf import config, write_config, DOMAINSDICT
|
||||
|
||||
from ..lib.schemas import schema_dict_dom
|
||||
|
||||
|
@ -84,11 +84,11 @@ def domain(domains, delete, update, create, read): #, domains, read, create, up
|
|||
# TODO: Connect to the create_domain function
|
||||
raise NotImplementedError
|
||||
|
||||
domains = DOMAINS
|
||||
domains = DOMAINSDICT().keys()
|
||||
else:
|
||||
domains_ = []
|
||||
for domain_name in domains.split(','):
|
||||
if domain_name in DOMAINS:
|
||||
if domain_name in DOMAINSDICT().keys():
|
||||
domains_.append(domain_name)
|
||||
continue
|
||||
|
||||
|
|
|
@ -10,7 +10,6 @@ It uses the following environment variables :
|
|||
It defines the following globals :
|
||||
|
||||
- PROJECT_NAME (str)
|
||||
- DOMAINS ([]) - seems to be unused except in this file
|
||||
- DOMAINSDICT ({domain_name: domain_module})
|
||||
- PRODUCTION (bool)
|
||||
- BASE_DIR (str)
|
||||
|
@ -46,7 +45,6 @@ from .lib.domain import d_domains
|
|||
logger = logging.getLogger('halfapi')
|
||||
|
||||
PROJECT_NAME = os.path.basename(os.getcwd())
|
||||
DOMAINS = []
|
||||
DOMAINSDICT = lambda: {}
|
||||
PRODUCTION = False
|
||||
HOST = '127.0.0.1'
|
||||
|
|
Loading…
Reference in New Issue