mirror of
https://github.com/ansible/awx.git
synced 2026-05-11 03:17:38 -02:30
Merge pull request #2015 from AlanCoding/1997_AS_naming_bug
Fix ActivityStream naming mismatch bug
This commit is contained in:
@@ -409,7 +409,7 @@ def activity_stream_associate(sender, instance, **kwargs):
|
|||||||
# If the m2m is from the User side we need to
|
# If the m2m is from the User side we need to
|
||||||
# set the content_object of the Role for our entry.
|
# set the content_object of the Role for our entry.
|
||||||
if type(instance) == User and role.content_object is not None:
|
if type(instance) == User and role.content_object is not None:
|
||||||
getattr(activity_entry, role.content_type.name).add(role.content_object)
|
getattr(activity_entry, role.content_type.name.replace(' ', '_')).add(role.content_object)
|
||||||
|
|
||||||
activity_entry.role.add(role)
|
activity_entry.role.add(role)
|
||||||
activity_entry.object_relationship_type = obj_rel
|
activity_entry.object_relationship_type = obj_rel
|
||||||
|
|||||||
Reference in New Issue
Block a user