blob: 87d62478da2844ec324ca42616dcfe343959f573 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
# frozen_string_literal: true
module AccountableConcern
extend ActiveSupport::Concern
def log_action(action, target, options = {})
Admin::ActionLog.create(account: current_account, action: action, target: target, recorded_changes: options.stringify_keys)
end
end
|