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

Methods

Public Instance methods

List of attributes that are audited.

Get a specific revision specified by the version number, or +:previous+

Find the oldest revision recorded prior to the date/time provided.

Gets an array of the revisions available

  user.revisions.each do |revision|
    user.name
    user.version
  end

Temporarily turns off auditing while saving.

Executes the block with the auditing callbacks disabled.

  @foo.without_auditing do
    @foo.save
  end

Protected Instance methods

[Validate]