Example #1
0
File: db.py Project: phiiil/veosan
def get_all_domain_setup():
    return DomainSetup.query().fetch()
Example #2
0
File: db.py Project: deltron/veosan
def get_all_domain_setup():
    return DomainSetup.query().fetch()
Example #3
0
File: db.py Project: phiiil/veosan
def get_domain_setup(domain):
    if domain:
        return DomainSetup.query(DomainSetup.domain_name == domain).get()
Example #4
0
File: db.py Project: deltron/veosan
def get_domain_setup(domain):
    if domain:
        return DomainSetup.query(DomainSetup.domain_name == domain).get()