From 23914182c45bdda45870b7f3680abc4d99516b2f Mon Sep 17 00:00:00 2001 From: Jake McDermott Date: Wed, 18 Dec 2019 18:31:24 -0500 Subject: [PATCH] Add credential_type summarizable fk field --- awx/api/serializers.py | 1 + 1 file changed, 1 insertion(+) diff --git a/awx/api/serializers.py b/awx/api/serializers.py index c8d5c4f352..e75b343711 100644 --- a/awx/api/serializers.py +++ b/awx/api/serializers.py @@ -141,6 +141,7 @@ SUMMARIZABLE_FK_FIELDS = { 'target_credential': DEFAULT_SUMMARY_FIELDS + ('kind', 'cloud', 'credential_type_id'), 'webhook_credential': DEFAULT_SUMMARY_FIELDS, 'approved_or_denied_by': ('id', 'username', 'first_name', 'last_name'), + 'credential_type': DEFAULT_SUMMARY_FIELDS, }