Is there any gem or plugin available for Users Actions Logging?
User can create, view, chage, delete some Model and other users should
be available to see the logs.
I'm ready to use some kind of observers on models, to write Events to
database.
And second question:
Should I store all Events in database? Or YAML files or something
would be preferred?
Is there any gem or plugin available for Users Actions Logging?
User can create, view, chage, delete some Model and other users should
be available to see the logs.
I'm ready to use some kind of observers on models, to write Events to
database.
And second question:
Should I store all Events in database? Or YAML files or something
would be preferred?
You thoughs, guys
I've used acts_as_audited for this
changes are stored in the 'audits' table where an audit is a standard AR
object that looks like this:
You should maintain audit for this. And “acts_as_audited” gem provides an active record extension using which you can track the update , create, destroy actions on a model