From 5550086b3b96eadb39892c0bc15e6d2132b11ba2 Mon Sep 17 00:00:00 2001 From: Gabe Muniz Date: Fri, 20 Jan 2023 12:41:35 -0500 Subject: [PATCH] added 'limit' to InventorySourceSerializer --- awx/api/serializers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/api/serializers.py b/awx/api/serializers.py index 46eddbffc4..5115d51b00 100644 --- a/awx/api/serializers.py +++ b/awx/api/serializers.py @@ -2083,7 +2083,7 @@ class InventorySourceSerializer(UnifiedJobTemplateSerializer, InventorySourceOpt class Meta: model = InventorySource - fields = ('*', 'name', 'inventory', 'update_on_launch', 'update_cache_timeout', 'source_project') + ( + fields = ('*', 'name', 'inventory', 'update_on_launch', 'update_cache_timeout', 'source_project', 'limit') + ( 'last_update_failed', 'last_updated', ) # Backwards compatibility.