From 45d9b670fddc33d3d891d9c192c5d36abe473122 Mon Sep 17 00:00:00 2001 From: AlanCoding Date: Wed, 12 Jul 2017 15:25:19 -0400 Subject: [PATCH] mark inventory source creation views as added 3.2 --- awx/api/views.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/awx/api/views.py b/awx/api/views.py index ecc40fe8e9..dcdda575be 100644 --- a/awx/api/views.py +++ b/awx/api/views.py @@ -2474,7 +2474,7 @@ class InventoryInventorySourcesList(SubListCreateAPIView): always_allow_superuser = False relationship = 'inventory_sources' parent_key = 'inventory' - new_in_14 = True + new_in_320 = True class InventoryInventorySourcesUpdate(RetrieveAPIView): @@ -2540,7 +2540,7 @@ class InventorySourceList(ListCreateAPIView): model = InventorySource serializer_class = InventorySourceSerializer always_allow_superuser = False - new_in_14 = True + new_in_320 = True class InventorySourceDetail(RetrieveUpdateDestroyAPIView):