mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-03 14:41:49 -05:00
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>
21 lines
370 B
Python
21 lines
370 B
Python
from awxkit.api.resources import resources
|
|
from . import base
|
|
from . import page
|
|
|
|
|
|
class ActivityStream(base.Base):
|
|
|
|
pass
|
|
|
|
|
|
page.register_page(resources.activity, ActivityStream)
|
|
|
|
|
|
class ActivityStreams(page.PageList, ActivityStream):
|
|
|
|
pass
|
|
|
|
|
|
page.register_page([resources.activity_stream,
|
|
resources.object_activity_stream], ActivityStreams)
|