feat: Add audit trail events for team (#7285)

This commit is contained in:
Vishnu Narayanan
2023-06-10 06:00:36 +05:30
committed by GitHub
parent cd28f401ba
commit 9ff5978d6e
5 changed files with 48 additions and 1 deletions

View File

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