From 3375460a9472fe26380b815d63c441d11d381302 Mon Sep 17 00:00:00 2001 From: Matthew Jones Date: Mon, 1 Jun 2015 12:44:22 -0400 Subject: [PATCH] Unwire the single_fact endpoints from the api for this release since they aren't implemented on the front end and we still need to do some work on them --- awx/api/urls.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/awx/api/urls.py b/awx/api/urls.py index 4dfc41d21e..872e25a4d2 100644 --- a/awx/api/urls.py +++ b/awx/api/urls.py @@ -75,7 +75,7 @@ inventory_urls = patterns('awx.api.views', url(r'^(?P[0-9]+)/activity_stream/$', 'inventory_activity_stream_list'), url(r'^(?P[0-9]+)/scan_job_templates/$', 'inventory_scan_job_template_list'), url(r'^(?P[0-9]+)/ad_hoc_commands/$', 'inventory_ad_hoc_commands_list'), - url(r'^(?P[0-9]+)/single_fact/$', 'inventory_single_fact_view'), + #url(r'^(?P[0-9]+)/single_fact/$', 'inventory_single_fact_view'), ) host_urls = patterns('awx.api.views', @@ -90,7 +90,7 @@ host_urls = patterns('awx.api.views', url(r'^(?P[0-9]+)/inventory_sources/$', 'host_inventory_sources_list'), url(r'^(?P[0-9]+)/ad_hoc_commands/$', 'host_ad_hoc_commands_list'), url(r'^(?P[0-9]+)/ad_hoc_command_events/$', 'host_ad_hoc_command_events_list'), - url(r'^(?P[0-9]+)/single_fact/$', 'host_single_fact_view'), + #url(r'^(?P[0-9]+)/single_fact/$', 'host_single_fact_view'), url(r'^(?P[0-9]+)/fact_versions/$', 'host_fact_versions_list'), url(r'^(?P[0-9]+)/fact_view/$', 'host_fact_compare_view'), ) @@ -108,7 +108,7 @@ group_urls = patterns('awx.api.views', url(r'^(?P[0-9]+)/activity_stream/$', 'group_activity_stream_list'), url(r'^(?P[0-9]+)/inventory_sources/$', 'group_inventory_sources_list'), url(r'^(?P[0-9]+)/ad_hoc_commands/$', 'group_ad_hoc_commands_list'), - url(r'^(?P[0-9]+)/single_fact/$', 'group_single_fact_view'), + #url(r'^(?P[0-9]+)/single_fact/$', 'group_single_fact_view'), ) inventory_source_urls = patterns('awx.api.views',