mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-08 17:11:48 -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>
19 lines
569 B
Python
19 lines
569 B
Python
from awxkit.api.resources import resources
|
|
from . import users
|
|
from . import page
|
|
|
|
|
|
class AccessList(page.PageList, users.User):
|
|
|
|
pass
|
|
|
|
|
|
page.register_page([resources.organization_access_list,
|
|
resources.user_access_list,
|
|
resources.inventory_access_list,
|
|
resources.group_access_list,
|
|
resources.credential_access_list,
|
|
resources.project_access_list,
|
|
resources.job_template_access_list,
|
|
resources.team_access_list], AccessList)
|