Base solution for your next web application
Open Closed

Audit journal functionality #8260


User avatar
0
antonis created

Hi,

I am trying to add audit journal in my application. I need to record user actions and show them to user e.g

  1. On 2019-12-23 John Doe edited the form. Changed Expiration date
  2. On 2019-12-24 George Jones changed the selected country to United Kingdom
  3. 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)
  • User Avatar
    0
    maliming created
    Support Team

    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.

  • User Avatar
    0
    ismcagdas created
    Support Team

    This issue is closed because of no recent activity. Please open a new issue if you are still having this problem.