added get_job_list to interface
This commit is contained in:
parent
1ae16ec44a
commit
a15a9dc735
1 changed files with 7 additions and 0 deletions
|
|
@ -58,6 +58,13 @@ class LinspectorInterface(object):
|
||||||
d["Fails"] = str(job.jobThreshold)
|
d["Fails"] = str(job.jobThreshold)
|
||||||
return d
|
return d
|
||||||
|
|
||||||
|
def get_job_list(self):
|
||||||
|
job_list = []
|
||||||
|
for job in self.jobs:
|
||||||
|
d = self.get_job_info_dict(job)
|
||||||
|
job_list.append(d)
|
||||||
|
return job_list
|
||||||
|
|
||||||
def get_enabled_layouts(self):
|
def get_enabled_layouts(self):
|
||||||
self._config.get_enabled_layouts()
|
self._config.get_enabled_layouts()
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue