iachat/enterprise/app/models/enterprise/audit/account.rb
2023-07-19 23:52:34 +05:30

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