Files
leadchat/enterprise/app/models/enterprise/audit/webhook.rb
Vishnu Narayanan d870b0815a feat: Audit log APIs (#6434)
- Adds the appropriate APIs for Audit Logs.

ref: #6015
2023-03-01 20:02:58 +05:30

8 lines
129 B
Ruby

module Enterprise::Audit::Webhook
extend ActiveSupport::Concern
included do
audited associated_with: :account
end
end