chatwoot/chatwoot

View on GitHub
enterprise/app/models/enterprise/audit/account.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
module Enterprise::Audit::Account
  extend ActiveSupport::Concern

  included do
    audited except: :updated_at, on: [:update]
    has_associated_audits
  end
end