mirror of
https://github.com/ansible/awx.git
synced 2026-02-18 11:40:05 -03: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>
21 lines
428 B
Python
21 lines
428 B
Python
from awxkit.api.resources import resources
|
|
from . import base
|
|
from . import page
|
|
|
|
|
|
class CredentialInputSource(base.Base):
|
|
|
|
pass
|
|
|
|
|
|
page.register_page(resources.credential_input_source, CredentialInputSource)
|
|
|
|
|
|
class CredentialInputSources(page.PageList, CredentialInputSource):
|
|
|
|
pass
|
|
|
|
|
|
page.register_page([resources.credential_input_sources,
|
|
resources.related_input_sources], CredentialInputSources)
|