Hi,
I am trying to add audit journal in my application. I need to record user actions and show them to user e.g
- On 2019-12-23 John Doe edited the form. Changed Expiration date
- On 2019-12-24 George Jones changed the selected country to United Kingdom
- On 2019-12-24 George Jones changed selected Gender to male.
I have dozens of these cases and I was wondering if there any way of doing this using aspnet zero?
2 Answer(s)
-
0
The abp framework has audit logs and entity history functions, but does not have the features you mentioned.
https://aspnetboilerplate.com/Pages/Documents/Audit-Logging https://aspnetboilerplate.com/Pages/Documents/Entity-History
These functions of abp are implemented by interceptors and mvc filters. You can refer to the code of these functions to achieve your needs.
If each method handles an event, then it may be relatively simple to implement, otherwise it may be difficult, because it is difficult for you to distinguish which methods have updated those properties, etc.
-
0
This issue is closed because of no recent activity. Please open a new issue if you are still having this problem.