adjusting API for new Credential.organization

This commit is contained in:
Wayne Witzel III
2016-06-10 13:23:02 -04:00
parent 74b6ea82fb
commit 2c05df064b
3 changed files with 8 additions and 21 deletions

View File

@@ -168,7 +168,7 @@ credential_urls = patterns('awx.api.views',
url(r'^(?P<pk>[0-9]+)/object_roles/$', 'credential_object_roles_list'),
url(r'^(?P<pk>[0-9]+)/owner/users/$', 'credential_owner_users_list'),
url(r'^(?P<pk>[0-9]+)/owner/teams/$', 'credential_owner_teams_list'),
url(r'^(?P<pk>[0-9]+)/owner/organizations/$', 'credential_owner_organizations_list'),
url(r'^(?P<pk>[0-9]+)/organization/$', 'credential_owner_teams_list'),
# See also credentials resources on users/teams.
)