-
Notifications
You must be signed in to change notification settings - Fork 81
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
Event Types on Activities Table #77
Comments
Right now, it's only tracking a few events since that's all that the code's been designed to work with. Theoretically, we could put anything and everything in there if we wanted to. Once we have it implemented, we should also log when files are uploaded and deleted, for example. |
The events are currently decorated with an icon stored in /www/images/tracker (e.g. we have a pacman like for comments)
|
Welcome back to issue 77 :-D As we've progressed on the data processing, one thing we need to do is add in other activity logging. Joomlacode logs changes to the title, category, and status (maybe more, I only took a look in a couple of tracker items). The discussion at this point should focus on what we want to log then act accordingly. |
The method in IssuesTable::processChanges() should record pretty much every change. |
So in looking at the code, there's a huge lack of consistency in how we're interfacing with the database. We have some places in which we're manually building INSERT/UPDATE queries, some places where we're calling |
Assuming I didn't break something along the way, I've cleaned up the hooks to always go through |
Looking to be good to go with everything, consider this closed (for real this time, not like the two false calls just above this comment). |
Currently the event types is a VARCHAR field. It appears we have comment / open / close as data that is tracked by this activities table. Will there be other event types that are available. When looking at reporting etc, it's nice to know all possible activities we're tracking.
The text was updated successfully, but these errors were encountered: