예제 #1
0
def job_list():
    return u.render(jobs=[j.to_dict() for j in api.get_jobs()])
예제 #2
0
def check_job_unique_name(name):
    if name in [j.name for j in api.get_jobs()]:
        raise ex.NameAlreadyExistsException("Job with name '%s' "
                                            "already exists" % name)
예제 #3
0
파일: v11.py 프로젝트: rsaha/sahara
def job_list():
    return u.render(jobs=[j.to_dict() for j in api.get_jobs(
        **u.get_request_args().to_dict())])
예제 #4
0
def job_list():
    return u.render(jobs=[j.to_dict() for j in api.get_jobs(
        **u.get_request_args().to_dict())])
예제 #5
0
def job_list():
    return u.render(jobs=[j.to_dict() for j in api.get_jobs()])
예제 #6
0
파일: base.py 프로젝트: AspirinSJL/sahara
def check_job_unique_name(name):
    if name in [j.name for j in api.get_jobs()]:
        raise ex.NameAlreadyExistsException("Job with name '%s' "
                                            "already exists" % name)