mirror of
https://github.com/ansible/awx.git
synced 2026-04-27 04:35:22 -02:30
Co-authored-by: Christopher Wang <cwang@ansible.com> Co-authored-by: Jake McDermott <jmcdermott@ansible.com> Co-authored-by: Jim Ladd <jladd@redhat.com> Co-authored-by: Elijah DeLee <kdelee@redhat.com> Co-authored-by: Alan Rominger <arominge@redhat.com> Co-authored-by: Yanis Guenane <yanis@guenane.org>
28 lines
423 B
Python
28 lines
423 B
Python
from awxkit.api.pages import UnifiedJob
|
|
from awxkit.api.resources import resources
|
|
from . import page
|
|
|
|
|
|
class SystemJob(UnifiedJob):
|
|
|
|
pass
|
|
|
|
|
|
page.register_page(resources.system_job, SystemJob)
|
|
|
|
|
|
class SystemJobs(page.PageList, SystemJob):
|
|
|
|
pass
|
|
|
|
|
|
page.register_page(resources.system_jobs, SystemJobs)
|
|
|
|
|
|
class SystemJobCancel(UnifiedJob):
|
|
|
|
pass
|
|
|
|
|
|
page.register_page(resources.system_job_cancel, SystemJobCancel)
|