feat: add audit trail for macros (#7352)

This commit is contained in:
Vishnu Narayanan
2023-06-20 13:04:59 +05:30
committed by GitHub
parent afb7e67795
commit 6bea2cbc4a
5 changed files with 47 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
module Enterprise::Audit::Macro
extend ActiveSupport::Concern
included do
audited associated_with: :account
end
end