-
Notifications
You must be signed in to change notification settings - Fork 144
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update activity stream, #9768, #9769 #10662
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1 tested. Checked importing business data on the CLI, some AfS workflows. Looks good!
@@ -228,9 +228,11 @@ def save(self, *args, **kwargs): | |||
context = kwargs.pop("context", None) | |||
transaction_id = kwargs.pop("transaction_id", None) | |||
super(Resource, self).save(*args, **kwargs) | |||
self.save_edit(user=user, edit_type="create", transaction_id=transaction_id) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think as the ticket author pointed out it's possible that moving this call to solve #9769 is not necessary if we do the filtering in #9768 as in this PR, but I still like the idea of doing it in case the another caller somewhere else in the application chooses not to filter in the same precise way.
Types of changes
Description of Change
Update the active stream view not to returns "Update" (such as tile create) when the tiles are created with the resource creation.
Issues Solved
#9768, #9769
Checklist
Ticket Background
Further comments