Module Audited::Auditor::AuditedClassMethods
In: lib/audited/auditor.rb

Methods

Public Instance methods

All audit operations during the block are recorded as being made by user. This is not model specific, the method is a convenience wrapper around @see Audit#as_user.

Returns an array of columns that are audited. See non_audited_columns

Executes the block with auditing disabled.

  Foo.without_auditing do
    @foo.save
  end

[Validate]