9 lines
164 B
Ruby
9 lines
164 B
Ruby
module Enterprise::Audit::Account
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
audited except: :updated_at, on: [:update]
|
|
has_associated_audits
|
|
end
|
|
end
|