fix up a minor OAuth2 token serializer nit

see: https://github.com/ansible/tower/issues/2751
This commit is contained in:
Ryan Petrello 2018-08-03 14:50:37 -04:00
parent c2f60f35b4
commit a3566b4270
No known key found for this signature in database
GPG Key ID: F2AA5F2122351777

View File

@ -78,7 +78,7 @@ DEFAULT_SUMMARY_FIELDS = ('id', 'name', 'description')# , 'created_by', 'modifie
SUMMARIZABLE_FK_FIELDS = {
'organization': DEFAULT_SUMMARY_FIELDS,
'user': ('id', 'username', 'first_name', 'last_name'),
'application': ('id', 'name', 'client_id'),
'application': ('id', 'name'),
'team': DEFAULT_SUMMARY_FIELDS,
'inventory': DEFAULT_SUMMARY_FIELDS + ('has_active_failures',
'total_hosts',