mirror of
https://github.com/ansible/awx.git
synced 2026-03-06 19:21:06 -03:30
Update Django to 1.8 and DRF to 3.3, add new Django migrations, update serializers/pagination/metadata, update browsable API styling.
This commit is contained in:
@@ -539,7 +539,7 @@ class Group(CommonModelNameNotUnique):
|
||||
def mark_actual():
|
||||
all_group_hosts = Group.hosts.through.objects.select_related("host", "group").filter(group__inventory=self.inventory)
|
||||
group_hosts = {'groups': {}, 'hosts': {}}
|
||||
all_group_parents = Group.parents.through.objects.select_related("parent", "group").filter(from_group__inventory=self.inventory)
|
||||
all_group_parents = Group.parents.through.objects.select_related("from_group", "to_group").filter(from_group__inventory=self.inventory)
|
||||
group_children = {}
|
||||
group_parents = {}
|
||||
marked_hosts = []
|
||||
|
||||
Reference in New Issue
Block a user