Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a standard way of audit tracking in grails?

Tags:

grails

audit

Is there a grails plugin or standard way of managing the created_by, created_on, updated_by, updated_on fields for a domain object?

like image 548
Mike Sickler Avatar asked May 07 '09 16:05

Mike Sickler


1 Answers

If you declare dateCreated and lastUpdated as Date they wil be maintained automatically by grails. You can use the Grails Audit Logging Plugin to log the authenticated user under different security systems.

like image 83
codehead Avatar answered Oct 17 '22 19:10

codehead