Closes #4840: Enable change logging for config contexts

This commit is contained in:
Jeremy Stretch
2020-07-09 17:09:03 -04:00
parent 8d7001fe56
commit 59091efa86
7 changed files with 39 additions and 3 deletions

View File

@@ -233,7 +233,7 @@ class ConfigContextSerializer(ValidatedModelSerializer):
model = ConfigContext
fields = [
'id', 'url', 'name', 'weight', 'description', 'is_active', 'regions', 'sites', 'roles', 'platforms',
'cluster_groups', 'clusters', 'tenant_groups', 'tenants', 'tags', 'data',
'cluster_groups', 'clusters', 'tenant_groups', 'tenants', 'tags', 'data', 'created', 'last_updated',
]